Skip to content

Instantly share code, notes, and snippets.

@simbathesailor
Created January 21, 2020 12:34
Show Gist options
  • Save simbathesailor/6b2ce6c6d145d7ab75fcbe3c07fba4b3 to your computer and use it in GitHub Desktop.
Save simbathesailor/6b2ce6c6d145d7ab75fcbe3c07fba4b3 to your computer and use it in GitHub Desktop.
useEffect.jsx
React.useEffect(() => {
// your logic side-effect
})
React.useEffect(() => {
// your logic side-effect
}, [])
React.useEffect(() => {
// your logic, side-effect
}, [a, b])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment