import { Card } from "@/components/ui/card"; import { Skeleton } from "@/components/ui/skeleton"; import { Separator } from "@/components/ui/separator"; export default function OrderSummarySkeleton() { return ( {/* Customer Information */}
{/* Payment Type */}
{/* Region Selection */}
{Array.from({ length: 4 }).map((_, i) => (
))}
{/* Province Selection */}
{/* Note */}
{/* Billing */}
{Array.from({ length: 3 }).map((_, i) => (
))}
); }