10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
import Statistics from '@/components/dashboard/statistics';
|
|
|
|
export default function Dashboard() {
|
|
return (
|
|
<div className='flex flex-1 flex-col gap-3'>
|
|
<Statistics />
|
|
</div>
|
|
);
|
|
}
|