Skip to content

Instantly share code, notes, and snippets.

@vzaidman
Last active January 25, 2020 13:35
Show Gist options
  • Select an option

  • Save vzaidman/fc76c99bfa2276e4eda2a848f5b7949c to your computer and use it in GitHub Desktop.

Select an option

Save vzaidman/fc76c99bfa2276e4eda2a848f5b7949c to your computer and use it in GitHub Desktop.
Why Did You Render 4 Released!
const BrokenBigPureComponent = React.memo(() => {
const data = useSelector(state => ({ text: state.text }));
return (
<p>{data.text}</p>
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment