Last active
October 4, 2021 00:09
-
-
Save Pyrolistical/077068fbebef1ddb4861dfdef0d154c7 to your computer and use it in GitHub Desktop.
https://blog.battlefy.com/how-to-escape-react-hooks-hell-a66c0d142c9e useMemo 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
// Good useMemo usage | |
const NormalComponent = ({ count }) => { | |
const costlyValue = useMemo(() => costlyFunction(count), [count]); | |
return <p>NormalComponent {costlyValue}</p>; | |
}; | |
export default ({ count }) => { | |
// Slow component | |
const SlowComponent = () => { | |
const costlyValue = costlyFunction(count); | |
return <p>SlowComponent {costlyValue}</p>; | |
}; | |
// Bad useMemo usage | |
const MemoizedComponent = useMemo(() => () => { | |
const costlyValue = costlyFunction(count); | |
return <p>MemoizedComponent {costlyValue}</p>; | |
}, [count]); | |
return <> | |
<SlowComponent /> | |
<MemoizedComponent /> | |
<NormalComponent count={count} /> | |
</>; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment