mirror of
https://github.com/langgenius/dify.git
synced 2025-07-13 20:21:37 +00: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
|