24 lines
790 B
TypeScript
24 lines
790 B
TypeScript
import DashboardListClient from "@/app/(main)/admin/dashboard/DashboardListClient";
|
|
|
|
/**
|
|
* 대시보드 관리 페이지
|
|
* - 클라이언트 컴포넌트를 렌더링하는 래퍼
|
|
* - 초기 로딩부터 CSR로 처리
|
|
*/
|
|
export default function DashboardListPage() {
|
|
return (
|
|
<div className="bg-background flex min-h-screen flex-col">
|
|
<div className="space-y-6 p-6">
|
|
{/* 페이지 헤더 */}
|
|
<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>
|
|
);
|
|
}
|