mirror of
https://github.com/langgenius/dify.git
synced 2025-08-01 05:47:27 +00:00
11 lines
221 B
TypeScript
11 lines
221 B
TypeScript
import React from 'react'
|
|
import CreateFromPipeline from '@/app/components/datasets/create-from-pipeline'
|
|
|
|
const DatasetCreation = async () => {
|
|
return (
|
|
<CreateFromPipeline />
|
|
)
|
|
}
|
|
|
|
export default DatasetCreation
|