mirror of
https://github.com/langgenius/dify.git
synced 2025-09-07 00:00:24 +00:00
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
import React from 'react'
|
|
import DatasetUpdateForm from '@/app/components/datasets/create'
|
|
|
|
const DatasetCreation = async () => {
|
|
return (
|
|
<DatasetUpdateForm />
|
|
)
|
|
}
|
|
|
|
export default DatasetCreation
|