14 lines
351 B
TypeScript
14 lines
351 B
TypeScript
import TanstakFilesTable from '@/app/components/tanstak-table/TanstakTable';
|
|
|
|
type FilesTable = {
|
|
fileType: string;
|
|
showFileLink?: boolean;
|
|
}
|
|
|
|
export default function FilesTable({ fileType, showFileLink }: FilesTable) {
|
|
return (
|
|
<div className="block-wrapper">
|
|
<TanstakFilesTable fileType={fileType} showFileLink={showFileLink}/>
|
|
</div>
|
|
)
|
|
} |