Skip to content

Instantly share code, notes, and snippets.

@itsMapleLeaf
Created August 26, 2021 14:43
Show Gist options
  • Save itsMapleLeaf/e3f14a938a4ed79c49525fd1e3f9ba34 to your computer and use it in GitHub Desktop.
Save itsMapleLeaf/e3f14a938a4ed79c49525fd1e3f9ba34 to your computer and use it in GitHub Desktop.
how to settimeout with hooks
useEffect(() => {
const timeout = setTimeout(() => {
doSomething()
}, 5000)
return () => clearTimeout(timeout)
}, [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment