Skip to content

Instantly share code, notes, and snippets.

@Kornil
Created February 16, 2019 15:53
Show Gist options
  • Save Kornil/482d8e2d7db5de2ee48d50a10553ead6 to your computer and use it in GitHub Desktop.
Save Kornil/482d8e2d7db5de2ee48d50a10553ead6 to your computer and use it in GitHub Desktop.
const areEqual = (prevProps, nextProps) => (
prevProps.myProp === nextProps.myProp
);
const Hello = ({ myProp }) => (
<div>{myProp}</div>
);
export default React.memo(Hello, areEqual);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment