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