Skip to content

Instantly share code, notes, and snippets.

@argodeep
Created June 26, 2020 15:27
Show Gist options
  • Save argodeep/93eea63a4de19a898ae3d951a0eb3f12 to your computer and use it in GitHub Desktop.
Save argodeep/93eea63a4de19a898ae3d951a0eb3f12 to your computer and use it in GitHub Desktop.
React Hook Lifecycle
useEffect(() => {
console.log('List Mounted')
if (!contacts.length) {
fetchContacts();
}
return function () {
console.log('List Unmounted')
}
}, [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment