Skip to content

Instantly share code, notes, and snippets.

@andrepcg
Created October 26, 2018 22:48
Show Gist options
  • Save andrepcg/6119c8594fd3a3fff1143c6db26bc54f to your computer and use it in GitHub Desktop.
Save andrepcg/6119c8594fd3a3fff1143c6db26bc54f to your computer and use it in GitHub Desktop.
const Product = React.memo((props) => {
const { name, price } = props;
return (
<div className="product-info">
<span>{name}</span>
<span>{price}</span>
</div>
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment