ProductGrid builds a massive infinite grid

This commit is contained in:
Belen Curcio
2020-10-03 11:33:31 -03:00
parent cf620b4fb3
commit 3d3b0f34a9
3 changed files with 28 additions and 16 deletions

View File

@@ -13,7 +13,22 @@ export async function getStaticProps({ preview }: GetStaticPropsContext) {
export default function Home({
products,
}: InferGetStaticPropsType<typeof getStaticProps>) {
return <ProductGrid products={products} />
return (
<>
<ProductGrid
products={[
...products,
...products,
...products,
...products,
...products,
...products,
]}
/>
<div>asdsasad</div>
<ProductGrid products={products.slice(3)} />
</>
)
}
Home.Layout = Layout