13 lines
234 B
TypeScript
Raw Normal View History

2023-05-15 08:51:32 +08:00
import React from 'react'
import DatasetUpdateForm from '@/app/components/datasets/create'
type Props = {}
const DatasetCreation = async (props: Props) => {
return (
<DatasetUpdateForm />
)
}
export default DatasetCreation