Files

10 lines
164 B
TypeScript

export default function DashboardPage() {
return (
<div>
<h1>Dashboard</h1>
{/* Dashboard content will be implemented here */}
</div>
);
}