mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-20 03:59:18 +08:00
17 lines
286 B
TypeScript
17 lines
286 B
TypeScript
import React from 'react'
|
|
import Main from '@/app/components/datasets/documents'
|
|
|
|
export type IProps = {
|
|
params: { datasetId: string }
|
|
}
|
|
|
|
const Documents = async ({
|
|
params: { datasetId },
|
|
}: IProps) => {
|
|
return (
|
|
<Main datasetId={datasetId} />
|
|
)
|
|
}
|
|
|
|
export default Documents
|