mirror of https://github.com/franjsco/tomadoro
edit App.js
This commit is contained in:
parent
26c6c0564a
commit
22c738602f
29
src/App.js
29
src/App.js
|
@ -1,21 +1,30 @@
|
|||
import React, { Component } from 'react';
|
||||
import Timer from './components/Timer';
|
||||
import ButtonBox from './components/ButtonBox';
|
||||
import './App.css';
|
||||
|
||||
class App extends Component {
|
||||
render() {
|
||||
return (
|
||||
<div className="App">
|
||||
<div className="App-header title">
|
||||
tomadoro
|
||||
</div>
|
||||
<Timer />
|
||||
<div className="footer">
|
||||
<p>
|
||||
<a href="https://github.com/frab1t/tomadoro">tomadoro</a>{` `}
|
||||
by <a href="https://twitter.com/frab1t">@frab1t</a> (Francesco Esposito)
|
||||
</p>
|
||||
</div>
|
||||
<div
|
||||
className="App-header title"
|
||||
>
|
||||
tomadoro
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<Timer />
|
||||
</div>
|
||||
|
||||
<div
|
||||
className="footer"
|
||||
>
|
||||
<p>
|
||||
<a href="https://github.com/frab1t/tomadoro">tomadoro</a>{` `}
|
||||
by <a href="https://twitter.com/frab1t">@frab1t</a> (Francesco Esposito)
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue