10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
|
|
import SiteBreadcrumb from "@/components/site-breadcrumb";
|
||
|
|
|
||
|
|
export default function ExecutiveDashboard() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<SiteBreadcrumb />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|