add tacking page
This commit is contained in:
@@ -1,13 +1,14 @@
|
||||
import TanstakFilesTable from '@/app/components/tanstak-table/TanstakTable';
|
||||
|
||||
type FilesTable = {
|
||||
fileType: string
|
||||
fileType: string;
|
||||
showFileLink?: boolean;
|
||||
}
|
||||
|
||||
export default function FilesTable({ fileType }: FilesTable) {
|
||||
export default function FilesTable({ fileType, showFileLink }: FilesTable) {
|
||||
return (
|
||||
<div className="block-wrapper">
|
||||
<TanstakFilesTable fileType={fileType} />
|
||||
<TanstakFilesTable fileType={fileType} showFileLink={showFileLink}/>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user