Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created March 1, 2020 21:24
Show Gist options
  • Save DZuz14/cc4bcd86581be72ebbe6d5ce8f2e3c78 to your computer and use it in GitHub Desktop.
Save DZuz14/cc4bcd86581be72ebbe6d5ce8f2e3c78 to your computer and use it in GitHub Desktop.
useEffect on initial render in Slider
useEffect(() => {
const play = () => {
autoPlayRef.current()
}
const interval = setInterval(play, props.autoPlay * 1000)
return () => clearInterval(interval)
}, [])
...rest of Slider component
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment