summaryrefslogtreecommitdiff
path: root/app/client/modules/pix2wav/index.js
blob: 602d54e32202c691e07ee2d211a3c4fc04a9a8a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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,
}