summaryrefslogtreecommitdiff
path: root/app/client/index.jsx
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-25 19:54:38 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-25 19:54:38 +0200
commit5a4de48a6d63cb383832f6ef85b21699a511b755 (patch)
tree4c4fd18d26f8b5c95a6788d138ed62869357c975 /app/client/index.jsx
parent1a99af129427275c22e8276e75fa4b8da6602129 (diff)
stubbing in a lot of stuff!
Diffstat (limited to 'app/client/index.jsx')
-rw-r--r--app/client/index.jsx8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/client/index.jsx b/app/client/index.jsx
index d30c73f..a084306 100644
--- a/app/client/index.jsx
+++ b/app/client/index.jsx
@@ -7,15 +7,17 @@ import { store, history } from './store'
import socket from './socket'
import Header from './common/header.component'
-import Live from './live'
+import Dashboard from './dashboard/dashboard.component'
+import LivePix2Pix from './pix2pix'
const app = (
<Provider store={store}>
<BrowserRouter>
<div>
+ <Route path='/' component={Dashboard} />
+ <Route path='/live/' component={LivePix2Pix} />
+ <Route path='/dashboard/' component={Dashboard} />
<Header />
- <Route path='/' component={Live} />
- <Route path='/live/' component={Live} />
</div>
</BrowserRouter>
</Provider>