Files
urbanLifeline/dify/web/app/(commonLayout)/datasets/create-from-pipeline/page.tsx

11 lines
221 B
TypeScript
Raw Normal View History

2025-12-01 17:21:38 +08:00
import React from 'react'
import CreateFromPipeline from '@/app/components/datasets/create-from-pipeline'
const DatasetCreation = async () => {
return (
<CreateFromPipeline />
)
}
export default DatasetCreation