Skip to content

Instantly share code, notes, and snippets.

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