Skip to content

Instantly share code, notes, and snippets.

@Eliav2
Created May 3, 2021 16:36
Show Gist options
  • Save Eliav2/0df546f3ab307f5df755e2067715b229 to your computer and use it in GitHub Desktop.
Save Eliav2/0df546f3ab307f5df755e2067715b229 to your computer and use it in GitHub Desktop.
const Basic = () => {
const log = useLog();
useEffect(() => {
log('finished render');
});
return <div/>;
};
/**
* expected logs:
* finished render {call:1,render:1}()
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment