diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-19 09:14:41 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-19 09:14:41 +0200 |
| commit | 5d5aaf5618860f0c9bc48763464cf74a7ab0b193 (patch) | |
| tree | f7dcbe8c364e90ef23b7c545d7801875694d6abe /app/client/modules/pix2pixhd/index.js | |
| parent | da016de8db8c4e73d606526caa0b9a7e1c68c754 (diff) | |
this header omg... stub in pix2pixhd results view
Diffstat (limited to 'app/client/modules/pix2pixhd/index.js')
| -rw-r--r-- | app/client/modules/pix2pixhd/index.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/client/modules/pix2pixhd/index.js b/app/client/modules/pix2pixhd/index.js index 75c4d7f..ea224f3 100644 --- a/app/client/modules/pix2pixhd/index.js +++ b/app/client/modules/pix2pixhd/index.js @@ -7,6 +7,7 @@ import util from '../../util' import Pix2PixHDNew from './views/pix2pixhd.new' import Pix2PixHDShow from './views/pix2pixhd.show' +import Pix2PixHDResults from './views/pix2pixhd.results' import Pix2PixHDLive from './views/pix2pixhd.live' class router { @@ -24,6 +25,7 @@ class router { <Route exact path='/pix2pixhd/new/' component={Pix2PixHDNew} /> <Route exact path='/pix2pixhd/sequences/' component={Pix2PixHDShow} /> <Route exact path='/pix2pixhd/sequences/:id/' component={Pix2PixHDShow} /> + <Route exact path='/pix2pixhd/results/' component={Pix2PixHDResults} /> <Route exact path='/pix2pixhd/live/' component={Pix2PixHDLive} /> </section> ) @@ -34,6 +36,7 @@ function links(){ return [ { url: '/pix2pixhd/new/', name: 'new' }, { url: '/pix2pixhd/sequences/', name: 'sequences' }, + { url: '/pix2pixhd/results/', name: 'results' }, { url: '/pix2pixhd/live/', name: 'live' }, ] } |
