11 lines
301 B
TypeScript
11 lines
301 B
TypeScript
import { DashboardShell } from "@/components/dashboard-shell";
|
|
import { PlaceholderDashboard } from "@/components/placeholder-dashboard";
|
|
|
|
export default function ExecutivePage() {
|
|
return (
|
|
<DashboardShell>
|
|
<PlaceholderDashboard title="Executive Dashboard" />
|
|
</DashboardShell>
|
|
);
|
|
}
|