Skip to content

Instantly share code, notes, and snippets.

@m1010j
Created April 20, 2019 18:08
Show Gist options
  • Save m1010j/0ab925da6fbd8ae4a1fa03614e8fbd6a to your computer and use it in GitHub Desktop.
Save m1010j/0ab925da6fbd8ae4a1fa03614e8fbd6a to your computer and use it in GitHub Desktop.
function RefHooksComponent(props) {
const ref = useRef(null);
if (ref.current === null) {
ref.current = expensiveCalculation(props.arg);
}
const result = ref.current;
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment