mirror of
https://github.com/langgenius/dify.git
synced 2025-07-17 06:12:10 +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
|