CoreControl/app/dashboard/DashboardPage.tsx

20 lines
431 B
TypeScript
Raw Normal View History

2025-05-17 19:33:52 +02:00
"use client";
2025-05-17 17:38:03 +02:00
2025-05-17 19:33:52 +02:00
import Sidebar from "@/components/Sidebar";
2025-05-17 17:38:03 +02:00
2025-05-17 19:33:52 +02:00
interface DashboardPageProps {
username: string;
name: string;
}
export default function DashboardPage({ username, name }: DashboardPageProps) {
2025-05-17 17:38:03 +02:00
return (
<div>
2025-05-17 19:33:52 +02:00
<Sidebar username={username} fullName={name}>
<main>
<h1>Dashboard</h1>
</main>
</Sidebar>
2025-05-17 17:38:03 +02:00
</div>
);
}