mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-17 23:47:13 +00:00
20 lines
431 B
TypeScript
20 lines
431 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}>
|
|
<main>
|
|
<h1>Dashboard</h1>
|
|
</main>
|
|
</Sidebar>
|
|
</div>
|
|
);
|
|
} |