Severian's picture
initial commit
a8b3f00
raw
history blame
234 Bytes
import React from 'react'
import DatasetUpdateForm from '@/app/components/datasets/create'
type Props = {}
const DatasetCreation = async (props: Props) => {
return (
<DatasetUpdateForm />
)
}
export default DatasetCreation