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

8 lines
141 B
TypeScript
Raw Normal View History

2025-12-12 14:22:00 +07:00
import DataTable from '@/app/components/tanstakTable';
2025-12-11 18:28:35 +07:00
export default function FilesTable() {
return (
<div>
2025-12-12 14:22:00 +07:00
<DataTable/>
2025-12-11 18:28:35 +07:00
</div>
)
}