Skip to content

Instantly share code, notes, and snippets.

@arnoldc
Last active August 8, 2023 14:01
Show Gist options
  • Save arnoldc/ed46b4a6a514b869690460ac2e5dcba6 to your computer and use it in GitHub Desktop.
Save arnoldc/ed46b4a6a514b869690460ac2e5dcba6 to your computer and use it in GitHub Desktop.
[React] useCallback
// useCallback and useMemo are used to memoize functions and values respectively.
const onClick = useCallback(() => {
}, []);
<div onClick={onClick} />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment