Skip to content

Instantly share code, notes, and snippets.

@Eliav2
Last active May 3, 2021 18:44
Show Gist options
  • Save Eliav2/ae32dc2a7e404ff88a4ec92861189c82 to your computer and use it in GitHub Desktop.
Save Eliav2/ae32dc2a7e404ff88a4ec92861189c82 to your computer and use it in GitHub Desktop.
const BasicReverse = () => {
// log function helper
// ...
// logic
useEffect(() => {
log('render has finished');
});
useEffect(() => {
log('mount has finished');
}, []);
log('update call');
return <div/>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment