import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "@/components/ui/table"; const NotificationSkeleton = () => { return (
{Array.from({ length: 15 }).map((_, index) => (
))}
); }; export default NotificationSkeleton;