Created
June 17, 2019 17:49
-
-
Save xthecapx/3cd3c8f00f72c465a3aace0e67c7c1c6 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
| import React from 'react'; | |
| import {products} from './products'; | |
| const ProductAlerts = ({ product }) => { | |
| let productAlerts; | |
| if (product.price > 700) { | |
| productAlerts = <p><button>Notify Me</button></p>; | |
| } | |
| return <div className="product-alerts">{productAlerts}</div> | |
| }; | |
| export default ProductAlerts; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment