import { Skeleton } from "@/components/shadcn/skeleton/skeleton"; const SkeletonTableRow = () => { return ( {/* Email */} {/* State - text */} {/* Role - text */} {/* Inserted At - date */} {/* Expires At - date */} {/* Actions */} ); }; export const SkeletonTableInvitation = () => { const rows = 10; return (
{/* Toolbar: Search + Total entries */}
{/* Search icon button */} {/* Total entries */}
{/* Table */} {/* Email */} {/* State */} {/* Role */} {/* Inserted At */} {/* Expires At */} {/* Actions - empty header */} {Array.from({ length: rows }).map((_, i) => ( ))}
{/* Pagination */}
{/* Rows per page */}
{/* Page info + navigation */}
); };