Skip to content

Instantly share code, notes, and snippets.

@m1010j
Created April 20, 2019 18:08
Show Gist options
  • Save m1010j/f036d96ac91359cb2143106781ecd499 to your computer and use it in GitHub Desktop.
Save m1010j/f036d96ac91359cb2143106781ecd499 to your computer and use it in GitHub Desktop.
function MemoHooksComponent(props) {
const { arg } = props;
const result = useMemo(() => expensiveCalculation(arg), [arg]);
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment