import { Card, CardContent, CardHeader, CardTitle } from "~/components/ui/card"; import { Separator } from "~/components/ui/separator"; import { Skeleton } from "~/components/ui/skeleton"; import { PageHeader } from "~/components/layout/page-header"; export function InvoiceDetailsSkeleton() { return (
{/* Header */} {/* Content */}
{/* Left Column */}
{/* Invoice Header Skeleton */}
{/* Client & Business Info */}
{/* Client Skeleton */}
{/* Business Skeleton */}
{/* Invoice Items Skeleton */} {/* Item Rows */} {Array.from({ length: 3 }).map((_, i) => (
))} {/* Totals */}
{/* Right Column - Actions */}
); }