Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save szaranger/c746e6b1f19de28f53bc39dd0aaa638f to your computer and use it in GitHub Desktop.
Save szaranger/c746e6b1f19de28f53bc39dd0aaa638f to your computer and use it in GitHub Desktop.
function calc(x, y) {
return x + y;
}
const memoizedValue = useMemo(() => {
return calc(a, b);
}, [a, b]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment