diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-05 19:18:56 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-05 19:18:56 +0200 |
| commit | 9f81aab18011637ac8daf4cdcf7223ee636a4663 (patch) | |
| tree | f38bf3f711f9838909ff1b5a8f1a8fe1ef922734 /app/client/modules/pix2wav/index.js | |
| parent | f827f34c60d8660abfe22faf091b79e8220eb0fa (diff) | |
boilerplate for p2p/p2w
Diffstat (limited to 'app/client/modules/pix2wav/index.js')
| -rw-r--r-- | app/client/modules/pix2wav/index.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/client/modules/pix2wav/index.js b/app/client/modules/pix2wav/index.js new file mode 100644 index 0000000..602d54e --- /dev/null +++ b/app/client/modules/pix2wav/index.js @@ -0,0 +1,24 @@ +import { h, Component } from 'preact' +import { Route, Link } from 'react-router-dom' + +function router () { + // <Route exact path='/pix2pix/live/' component={Pix2PixLive} /> + return ( + <section> + </section> + ) +} + +function links(){ + return ( + <span> + <span>datasets</span> + <span><Link to="/pix2wav/live/">live</Link></span> + </span> + ) +} + +export default { + name: 'pix2pix', + router, links, +} |
