Last active
October 4, 2021 00:08
-
-
Save Pyrolistical/8d1c27df0afa1cee88f1fc4da6c93090 to your computer and use it in GitHub Desktop.
https://blog.battlefy.com/how-to-escape-react-hooks-hell-a66c0d142c9e avoid inner component
This file contains 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
// BAD | |
export default ({ count }) => { | |
const Label = () => { | |
return <code>{count}</code>; | |
}; | |
return <Label />; | |
}; | |
// GOOD | |
const Label = ({ count }) => { | |
return <code>{count}</code>; | |
}; | |
export default ({ count }) => { | |
return <Label count={count} />; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment