From a190d638c608f4352e3f01d72ed419a5ab5129ed Mon Sep 17 00:00:00 2001 From: Jules Laplace Date: Thu, 29 Jun 2017 00:14:07 +0200 Subject: db stuff and initial app scaffold --- client/components/App.jsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 client/components/App.jsx (limited to 'client/components/App.jsx') diff --git a/client/components/App.jsx b/client/components/App.jsx new file mode 100644 index 0000000..0b1557f --- /dev/null +++ b/client/components/App.jsx @@ -0,0 +1,24 @@ +import { h, Component } from 'preact' +import { isMobile } from '../util' +import db from '../db' +import { Link, withRouter } from 'react-router-dom' + +import Header from './Header.jsx' + +class App extends Component { + constructor(props) { + super() + this.state = { + } + } + render() { + return ( +
+
+
+ ) + } +} + +export default withRouter(App) + -- cgit v1.2.3-70-g09d2