12 lines
319 B
TypeScript
12 lines
319 B
TypeScript
import { Dashboard } from '@/components/dashboard';
|
|
|
|
export default function DashboardPage() {
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 py-8">
|
|
<div className="max-w-7xl mx-auto px-4">
|
|
<h1 className="text-3xl font-bold mb-8">Dashboard</h1>
|
|
<Dashboard />
|
|
</div>
|
|
</div>
|
|
);
|
|
} |