9 lines
233 B
TypeScript
9 lines
233 B
TypeScript
import DataTableMahasiswa from "@/components/datatable/data-table-mahasiswa";
|
|
|
|
export default function DashboardPage() {
|
|
return (
|
|
<div className="container mx-auto p-4 space-y-6">
|
|
<DataTableMahasiswa />
|
|
</div>
|
|
);
|
|
}
|