Skip to content

Instantly share code, notes, and snippets.

@Pyrolistical
Last active October 4, 2021 00:09
Show Gist options
  • Save Pyrolistical/077068fbebef1ddb4861dfdef0d154c7 to your computer and use it in GitHub Desktop.
Save Pyrolistical/077068fbebef1ddb4861dfdef0d154c7 to your computer and use it in GitHub Desktop.
// 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