import { Skeleton } from '@/components/ui/skeleton'; export const LoadingSkeleton = () => { return (
{[...Array(6)].map((_, i) => (
))}
); };