mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-17 15:36:50 +00:00
9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
|
|
"use client";
|
||
|
|
export default function Dashboard() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<h1 className="text-2xl font-bold text-primary">Dashboard</h1>
|
||
|
|
<p>Welcome to your dashboard</p>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|