12 lines
374 B
TypeScript
12 lines
374 B
TypeScript
import { DashboardHeader } from "@/base/components/layout/dashboard";
|
|
import DashboardPage from "@/base/components/layout/dashboard/dashboard-page";
|
|
import { DashboardContent } from "@/modules/home/dashboard-content";
|
|
|
|
export default function page() {
|
|
return (
|
|
<DashboardPage headerProps={{title: "Dashboard"}} >
|
|
<DashboardContent />
|
|
</DashboardPage>
|
|
)
|
|
}
|