Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created March 1, 2020 21:13
Show Gist options
  • Save DZuz14/e2362236883d765fd5433939af952768 to your computer and use it in GitHub Desktop.
Save DZuz14/e2362236883d765fd5433939af952768 to your computer and use it in GitHub Desktop.
useRef and useEffect in tandem
import React, { useState, useEffect, useRef } from 'react'
const autoPlayRef = useRef()
useEffect(() => {
autoPlayRef.current = nextSlide
})
...rest of Slider component
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment