summaryrefslogtreecommitdiff
path: root/app/client/modules/pix2wav/index.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-05 19:18:56 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-05 19:18:56 +0200
commit9f81aab18011637ac8daf4cdcf7223ee636a4663 (patch)
treef38bf3f711f9838909ff1b5a8f1a8fe1ef922734 /app/client/modules/pix2wav/index.js
parentf827f34c60d8660abfe22faf091b79e8220eb0fa (diff)
boilerplate for p2p/p2w
Diffstat (limited to 'app/client/modules/pix2wav/index.js')
-rw-r--r--app/client/modules/pix2wav/index.js24
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,
+}