import React from "react"; import { Card } from "@/components/shadcn/card/card"; import { Skeleton } from "@/components/shadcn/skeleton/skeleton"; export const SkeletonTableInvitation = () => { return ( {/* Table headers */}
{/* Table body */}
{[...Array(10)].map((_, index) => (
))}
); };