14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
|
|
import DashboardNavbar from "@/components/dashboard/dashboard-navbar";
|
||
|
|
import CoordinatorTable from "@/components/table/coordinator-table";
|
||
|
|
|
||
|
|
export default function CoordinatorPage() {
|
||
|
|
return (
|
||
|
|
<div className="min-h-screen bg-[#f8f9fa]">
|
||
|
|
<DashboardNavbar />
|
||
|
|
<div className="p-6">
|
||
|
|
<CoordinatorTable />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|