1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-21 17:06:58 +00:00

Better skeleton

This commit is contained in:
Lee Robinson 2024-08-13 13:25:55 -05:00
parent 56bb3544a6
commit 22f498c0de

@ -2,6 +2,8 @@ import Grid from 'components/grid';
export default function Loading() {
return (
<>
<div className="mb-4 h-6" />
<Grid className="grid-cols-2 lg:grid-cols-3">
{Array(12)
.fill(0)
@ -11,5 +13,6 @@ export default function Loading() {
);
})}
</Grid>
</>
);
}