diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-02 17:38:24 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-02 17:38:24 +0200 |
| commit | 01cda57ffd9edc0a3f53501399c134815232e4b5 (patch) | |
| tree | 5452da202c84c8cf5bc7a550d59a0b08e2319e06 /app/client/modules/samplernn/index.js | |
| parent | ac05878d9a9df5f24b54d223de4319193f4499fc (diff) | |
inspect mode for samplernn sanity
Diffstat (limited to 'app/client/modules/samplernn/index.js')
| -rw-r--r-- | app/client/modules/samplernn/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/client/modules/samplernn/index.js b/app/client/modules/samplernn/index.js index afb5263..e020c6c 100644 --- a/app/client/modules/samplernn/index.js +++ b/app/client/modules/samplernn/index.js @@ -1,10 +1,12 @@ import { h, Component } from 'preact' import { Route, Link } from 'react-router-dom' import SampleRNNDatasets from './samplernn.datasets' +import SampleRNNInspect from './samplernn.inspect' function router () { return ( <div> + <Route path='/samplernn/inspect/' component={SampleRNNInspect} /> <Route path='/samplernn/datasets/' component={SampleRNNDatasets} /> </div> ) |
