import { Card, CardContent, CardHeader } from "@/components/ui/card"; import { Skeleton } from "@/components/ui/skeleton"; /** * @description 대시보드 초기 로딩 스켈레톤 UI입니다. * @see features/dashboard/components/DashboardContainer.tsx isLoading 상태에서 렌더링합니다. */ export function DashboardSkeleton() { return (
{/* ========== HEADER SKELETON ========== */} {/* ========== BODY SKELETON ========== */}
{Array.from({ length: 6 }).map((_, index) => ( ))}
); }