import { Fade, Skeleton, Stack, Typography } from '@mui/material'; export default function ProductSkeleton({ count }: { count: number }) { return ( {Array.from({ length: count }).map((_, i) => ( // eslint-disable-next-line react/no-array-index-key ))} ); }