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