13 lines
270 B
TypeScript
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>
|
|
)
|
|
} |