mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-18 16:07:10 +00:00
24 lines
535 B
TypeScript
24 lines
535 B
TypeScript
"use client";
|
|
|
|
import Sidebar from "@/components/Sidebar";
|
|
|
|
interface DashboardPageProps {
|
|
username: string;
|
|
name: string;
|
|
}
|
|
|
|
export default function DashboardPage({ username, name }: DashboardPageProps) {
|
|
return (
|
|
<div>
|
|
<Sidebar
|
|
username={username}
|
|
fullName={name}
|
|
breadcrumbPath={['/', 'Dashboard']}
|
|
>
|
|
<main>
|
|
<h1>Dashboard</h1>
|
|
</main>
|
|
</Sidebar>
|
|
</div>
|
|
);
|
|
} |