1 2 3 4 5 6 7 8 9 10 11 12 13
import { h, Component } from 'preact' import NewDatasetForm from '../../../dataset/dataset.new' import pix2wavModule from '../pix2wav.module' export default function Pix2WavNew ({ history }) { return ( <div class='app pix2wav'> <NewDatasetForm module={pix2wavModule} history={history} /> </div> ) }