diff options
Diffstat (limited to 'app/client/modules/biggan/index.js')
| -rw-r--r-- | app/client/modules/biggan/index.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/client/modules/biggan/index.js b/app/client/modules/biggan/index.js index 6c94008..05d0213 100644 --- a/app/client/modules/biggan/index.js +++ b/app/client/modules/biggan/index.js @@ -5,6 +5,9 @@ import actions from '../../actions' import util from '../../util' +import BigGANNew from './views/biggan.new' +import BigGANShow from './views/biggan.show' +import BigGANResults from './views/biggan.results' import BigGANLive from './views/biggan.live' class router { @@ -19,6 +22,10 @@ class router { render(){ return ( <section> + <Route exact path='/biggan/new/' component={BigGANNew} /> + <Route exact path='/biggan/datasets/' component={BigGANShow} /> + <Route exact path='/biggan/datasets/:id/' component={BigGANShow} /> + <Route exact path='/biggan/results/' component={BigGANResults} /> <Route exact path='/biggan/live/' component={BigGANLive} /> </section> ) @@ -27,6 +34,9 @@ class router { function links(){ return [ + { url: '/biggan/new/', name: 'folders' }, + { url: '/biggan/datasets/', name: 'datasets' }, + { url: '/biggan/results/', name: 'results' }, { url: '/biggan/live/', name: 'live' }, ] } |
