diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-26 15:58:21 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-26 15:58:21 +0200 |
| commit | 96e19464f98b868bd93b76ac842ec5b32a17cfb6 (patch) | |
| tree | a232cfecd631d49fae8d1402371a284296aeec87 /app/client/index.jsx | |
| parent | 28f4bd59314df8162548a1100b280bd256436eaa (diff) | |
means to run remote commands and get output
Diffstat (limited to 'app/client/index.jsx')
| -rw-r--r-- | app/client/index.jsx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/app/client/index.jsx b/app/client/index.jsx index 45a1b94..fba38df 100644 --- a/app/client/index.jsx +++ b/app/client/index.jsx @@ -8,15 +8,20 @@ import socket from './socket' import Header from './common/header.component' import Dashboard from './dashboard/dashboard.component' -import LivePix2Pix from './pix2pix' +import System from './system/system.component' +import Pix2Pix 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} /> + <Route path='/datasets/' component={Dashboard} /> + <Route path='/checkpoints/' component={Dashboard} /> + <Route path='/results/' component={Dashboard} /> + <Route path='/live/' component={Pix2Pix.Live} /> + <Route path='/system/' component={System} /> + <Route path='/dashboard/' component={Dashboard} /> <Header /> </div> </BrowserRouter> |
