import { h, Component } from 'preact'
import { Route, Link } from 'react-router-dom'
import Pix2PixNew from './views/pix2pix.new'
import Pix2PixShow from './views/pix2pix.show'
import Pix2PixLive from './views/pix2pix.live'
function router () {
return (
)
}
function links(){
return (
datasets
live
)
}
export default {
name: 'pix2pix',
router, links,
}