Last active
January 25, 2020 13:35
-
-
Save vzaidman/fc76c99bfa2276e4eda2a848f5b7949c to your computer and use it in GitHub Desktop.
Why Did You Render 4 Released!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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