mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 20:57:51 +00:00
12 lines
332 B
TypeScript
12 lines
332 B
TypeScript
const ProductsGridPlaceholder = () => {
|
|
return (
|
|
<section className="grid grid-cols-1 gap-3 sm:grid-cols-2 lg:grid-cols-3">
|
|
{Array.from({ length: 9 }).map((_, index) => (
|
|
<div key={index} className="h-96 w-full rounded-lg bg-gray-200" />
|
|
))}
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default ProductsGridPlaceholder;
|