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

13 lines
270 B
TypeScript

import TanstakFilesTable from '@/app/components/tanstakTable';
type FilesTable = {
fileType: string
}
export default function FilesTable({ fileType }: FilesTable) {
return (
<div className="block-wrapper">
<TanstakFilesTable fileType={fileType} />
</div>
)
}