ERP-node/frontend/app/(main)/admin/dashboard/page.tsx

24 lines
790 B
TypeScript
Raw Normal View History

import DashboardListClient from "@/app/(main)/admin/dashboard/DashboardListClient";
/**
*
* -
* - CSR로
*/
export default function DashboardListPage() {
return (
<div className="bg-background flex min-h-screen flex-col">
2025-10-22 14:52:13 +09:00
<div className="space-y-6 p-6">
{/* 페이지 헤더 */}
2025-10-22 14:52:13 +09:00
<div className="space-y-2 border-b pb-4">
<h1 className="text-3xl font-bold tracking-tight"> </h1>
<p className="text-muted-foreground text-sm"> </p>
</div>
{/* 클라이언트 컴포넌트 */}
<DashboardListClient />
</div>
</div>
);
}