Skip to content

Instantly share code, notes, and snippets.

@mohandere
Last active May 12, 2019 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mohandere/6220d012165916d581e99175b2c6a53c to your computer and use it in GitHub Desktop.
Save mohandere/6220d012165916d581e99175b2c6a53c to your computer and use it in GitHub Desktop.
const ProductCard = props => {
return (
<div className="product">
<p>
<b>Title:</b> {props.title}
</p>
<p>
<b>Style:</b> {props.style}
</p>
<p>
<b>Price:</b> {props.price}
</p>
<p>
<b>Description:</b> {props.description}
</p>
<p>
<b>Free shipping:</b> {props.isFreeShipping}
</p>
<hr />
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment