import { Skeleton } from "@/components/ui/skeleton"; const RatingsSummarySkeleton = () => { return (
{/* Average Rating Section Skeleton */}
{/* Rating Progress Bars Section Skeleton */}
{[1, 2, 3, 4, 5].map((index) => (
))}
); }; export default RatingsSummarySkeleton;