Files
no-copy-frontend/src/app/ui/dashboard/files-table.tsx
T

14 lines
351 B
TypeScript
Raw Normal View History

2026-02-20 12:52:18 +07:00
import TanstakFilesTable from '@/app/components/tanstak-table/TanstakTable';
2025-12-29 16:08:38 +07:00
type FilesTable = {
2026-04-28 16:32:23 +07:00
fileType: string;
showFileLink?: boolean;
2025-12-29 16:08:38 +07:00
}
2026-04-28 16:32:23 +07:00
export default function FilesTable({ fileType, showFileLink }: FilesTable) {
2025-12-11 18:28:35 +07:00
return (
2025-12-12 20:28:59 +07:00
<div className="block-wrapper">
2026-04-28 16:32:23 +07:00
<TanstakFilesTable fileType={fileType} showFileLink={showFileLink}/>
2025-12-11 18:28:35 +07:00
</div>
)
}