Skip to content

Instantly share code, notes, and snippets.

@hnrchrdl
Created August 18, 2019 17:35
Show Gist options
  • Save hnrchrdl/a41a11993cc8f63810dd25528a31fee6 to your computer and use it in GitHub Desktop.
Save hnrchrdl/a41a11993cc8f63810dd25528a31fee6 to your computer and use it in GitHub Desktop.
Example 6
const Child = React.memo(
({ isAboveFive, children }) => {
console.log("child renders");
return (
<>
<h2>Child: {!isAboveFive ? "<= 5" : "> 5"}</h2>
{children}
</>
);
},
(prevProps, props) => {
return prevProps.isAboveFive === props.isAboveFive;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment