2025-12-12 20:28:59 +07:00
|
|
|
import TanstakFilesTable from '@/app/components/tanstakTable';
|
2025-12-29 16:08:38 +07:00
|
|
|
|
|
|
|
|
type FilesTable = {
|
|
|
|
|
fileType: string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function FilesTable({ fileType }: FilesTable) {
|
2025-12-11 18:28:35 +07:00
|
|
|
return (
|
2025-12-12 20:28:59 +07:00
|
|
|
<div className="block-wrapper">
|
2025-12-29 16:08:38 +07:00
|
|
|
<TanstakFilesTable fileType={fileType} />
|
2025-12-11 18:28:35 +07:00
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|