mirror of
https://github.com/langgenius/dify.git
synced 2026-02-03 17:41:35 +08:00
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
import * as React from 'react'
|
|
import DatasetUpdateForm from '@/app/components/datasets/create'
|
|
|
|
const DatasetCreation = async () => {
|
|
return (
|
|
<DatasetUpdateForm />
|
|
)
|
|
}
|
|
|
|
export default DatasetCreation
|