diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-06-29 01:18:06 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-06-29 01:18:06 +0200 |
| commit | 50904f4b010c417d558174005a7b4c5868e7d8d9 (patch) | |
| tree | 2fb9bad10e09ff66ccc5313289a62367843326a3 /client/components/App.jsx | |
| parent | a190d638c608f4352e3f01d72ed419a5ab5129ed (diff) | |
sketch folder stuff
Diffstat (limited to 'client/components/App.jsx')
| -rw-r--r-- | client/components/App.jsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/client/components/App.jsx b/client/components/App.jsx index 0b1557f..bbb50d6 100644 --- a/client/components/App.jsx +++ b/client/components/App.jsx @@ -1,20 +1,23 @@ import { h, Component } from 'preact' -import { isMobile } from '../util' -import db from '../db' +import { isMobile } from '../vendor/util' +// import db from '../db' import { Link, withRouter } from 'react-router-dom' import Header from './Header.jsx' +import Folders from './Folders/Folders.jsx' class App extends Component { constructor(props) { super() this.state = { + folders: null, } } render() { return ( <div> <Header /> + <Folders /> </div> ) } |
