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
|