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

8 lines
183 B
TypeScript
Raw Normal View History

2025-12-12 20:28:59 +07:00
import TanstakFilesTable from '@/app/components/tanstakTable';
2025-12-11 18:28:35 +07:00
export default function FilesTable() {
return (
2025-12-12 20:28:59 +07:00
<div className="block-wrapper">
<TanstakFilesTable/>
2025-12-11 18:28:35 +07:00
</div>
)
}