mirror of
https://github.com/vercel/commerce.git
synced 2025-03-15 23:12:32 +00:00
16 lines
359 B
TypeScript
16 lines
359 B
TypeScript
import Grid from 'components/grid';
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<Grid className="grid-cols-2 lg:grid-cols-3">
|
|
{Array(12)
|
|
.fill(0)
|
|
.map((_, index) => {
|
|
return (
|
|
<Grid.Item key={index} className="animate-pulse bg-neutral-100 dark:bg-neutral-900" />
|
|
);
|
|
})}
|
|
</Grid>
|
|
);
|
|
}
|