pomodoro/client/components/Layout.jsx
Linus Miller 47ce0a2a33 Huge commit
- Update all deps
 - Apply midwest changes
 - Convert all templates to JSX
 - Preact instead of Marko
 - Babel & Eslint
2016-11-10 14:34:44 +01:00

13 lines
184 B
JavaScript

import { h } from 'preact';
import Timer from './Timer.jsx';
export default () => (
<div id="app">
<main>
<h1>Pomodoro Time!</h1>
<Timer />
</main>
</div>
);