summaryrefslogtreecommitdiff
path: root/app/client/modules/biggan/index.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-01-03 15:35:26 +0100
committerJules Laplace <julescarbon@gmail.com>2020-01-03 15:35:26 +0100
commitee2471bb4ad8e190c1f2c1c47817046a2c4d6b30 (patch)
tree8ca5338987e5777a598b0a0d0eebbfc3625f7272 /app/client/modules/biggan/index.js
parentd6bed4f04c5bba402ae2aa0b15dddfb98c5b3bf1 (diff)
adding biggan dataset stuff
Diffstat (limited to 'app/client/modules/biggan/index.js')
-rw-r--r--app/client/modules/biggan/index.js10
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' },
]
}