Last active
May 12, 2019 14:25
-
-
Save mohandere/6220d012165916d581e99175b2c6a53c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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