mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-31 10:35:04 +08:00
13 lines
234 B
TypeScript
13 lines
234 B
TypeScript
import React from 'react'
|
|
import DatasetUpdateForm from '@/app/components/datasets/create'
|
|
|
|
type Props = {}
|
|
|
|
const DatasetCreation = async (props: Props) => {
|
|
return (
|
|
<DatasetUpdateForm />
|
|
)
|
|
}
|
|
|
|
export default DatasetCreation
|