12 lines
158 B
TypeScript
12 lines
158 B
TypeScript
'use client';
|
|
|
|
import Dashboard from '@/components/Dashboard';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main>
|
|
<Dashboard />
|
|
</main>
|
|
);
|
|
}
|