summaryrefslogtreecommitdiff
path: root/client/components/App.jsx
blob: 0b1557f5416882557159784717acda9588701771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 (
      <div>
        <Header />
      </div>
    )
  }
}

export default withRouter(App)