Skip to content

Instantly share code, notes, and snippets.

@javedbaloch4
Created January 27, 2019 07:44
Show Gist options
  • Save javedbaloch4/fa81ddc5e810cc564fb61d2733d7d11b to your computer and use it in GitHub Desktop.
Save javedbaloch4/fa81ddc5e810cc564fb61d2733d7d11b to your computer and use it in GitHub Desktop.
const product = DATA.map(function(product) {
return (
<Col span={6} style={{ minHeight: "280px" }}>
<Card style={{ minHeight: "260px" }}>
<h2>{product.name}</h2>
<img src={product.img} alt={product.name} width={100} />
<p>
<strong>{product.price}</strong>
</p>
<p>{product.isAvailable ? "Available" : "Out of Stock"}</p>
</Card>
</Col>
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment