Skip to content

Instantly share code, notes, and snippets.

@xthecapx
Created June 17, 2019 17:49
Show Gist options
  • Save xthecapx/3cd3c8f00f72c465a3aace0e67c7c1c6 to your computer and use it in GitHub Desktop.
Save xthecapx/3cd3c8f00f72c465a3aace0e67c7c1c6 to your computer and use it in GitHub Desktop.
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