'use client'; import { Skeleton } from "@/components/ui/skeleton"; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from '@/components/ui/table'; import { Package } from 'lucide-react'; const skeletonVariants = { initial: { opacity: 0 }, animate: { opacity: 1, transition: { staggerChildren: 0.1 } } }; // Componente simple para una fila del skeleton function SkeletonRow() { return (
); } export function PlanManagerSkeleton() { return (
{/* Header Section */}
{/* Table Section */}
Título Destino Categoría Publicado Acciones {Array.from({ length: 5 }).map((_, index) => ( ))}
); }