summaryrefslogtreecommitdiff
path: root/app/client/index.jsx
blob: 45a1b947271a2e98b910bdd97fc35e3442f2bddf (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
25
26
import { h, render } from 'preact'
import { Provider } from 'react-redux'
import { BrowserRouter, Route } from 'react-router-dom'
// import client from './client'

import { store, history } from './store'
import socket from './socket'

import Header from './common/header.component'
import Dashboard from './dashboard/dashboard.component'
import LivePix2Pix from './pix2pix'

const app = (
  <Provider store={store}>
    <BrowserRouter>
      <div>
        <Route exact path='/' component={Dashboard} />
        <Route exact path='/live/' component={LivePix2Pix} />
        <Route exact path='/dashboard/' component={Dashboard} />
        <Header />
      </div>
    </BrowserRouter>
  </Provider>
)

render(app, document.getElementById('container'))