Files
2026-07-13 12:58:18 +08:00

11 lines
300 B
TypeScript

import { DashboardShell } from "@/components/dashboard-shell";
import { PlaceholderDashboard } from "@/components/placeholder-dashboard";
export default function LabAdminPage() {
return (
<DashboardShell>
<PlaceholderDashboard title="Lab Admin Dashboard" />
</DashboardShell>
);
}