Skip to content

Instantly share code, notes, and snippets.

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