Skip to content

Instantly share code, notes, and snippets.

@luismartinezs
Last active December 15, 2022 14:42
Show Gist options
  • Save luismartinezs/30e7681ac6c133331a2aaaeb4627d390 to your computer and use it in GitHub Desktop.
Save luismartinezs/30e7681ac6c133331a2aaaeb4627d390 to your computer and use it in GitHub Desktop.
render count #react
function useLogCount(msg) {
const count = useRef(1);
useEffect(() => {
console.debug(msg, count.current);
count.current++;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment