const ProductsGridPlaceholder = () => { return (
{Array.from({ length: 9 }).map((_, index) => (
))}
); }; export default ProductsGridPlaceholder;