"use client"; import { Card, CardBody, Skeleton } from "@heroui/react"; export default function StatsCardsSkeleton() { return (
{[1, 2, 3, 4].map((index) => (
{/* Label Skeleton */} {/* Value Skeleton */}
{/* Change Badge Skeleton */}
))}
); }