mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 20:18:40 +08:00
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import * as React from 'react'
|
|
import DatasetUpdateForm from '@/app/components/datasets/create'
|
|
|
|
const DatasetCreation = async () => {
|
|
return <DatasetUpdateForm />
|
|
}
|
|
|
|
export default DatasetCreation
|