11 lines
245 B
TypeScript
11 lines
245 B
TypeScript
|
|
import React from 'react'
|
||
|
|
import CreateFromPipeline from '@/app/components/datasets/documents/create-from-pipeline'
|
||
|
|
|
||
|
|
const CreateFromPipelinePage = async () => {
|
||
|
|
return (
|
||
|
|
<CreateFromPipeline />
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default CreateFromPipelinePage
|