Skip to content

Instantly share code, notes, and snippets.

@ishaqibrahimbot
Last active February 6, 2022 10:26
Show Gist options
  • Save ishaqibrahimbot/0faefcc1906ee2abfed651b076690680 to your computer and use it in GitHub Desktop.
Save ishaqibrahimbot/0faefcc1906ee2abfed651b076690680 to your computer and use it in GitHub Desktop.
function SomeReactComponent({ products }) {
return (
<div>
{products.map(product => <ProductCard key={product.id} product={product} />)}
</div>
)
}
//Space
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment