Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created March 1, 2020 21:41
Show Gist options
  • Save DZuz14/bea64a4aad2806264f27ab4ed0e496e9 to your computer and use it in GitHub Desktop.
Save DZuz14/bea64a4aad2806264f27ab4ed0e496e9 to your computer and use it in GitHub Desktop.
autoPlay prop
import React from 'react'
import ReactDOM from 'react-dom'
import Slider from './components/Slider'
const images = [
'https://images.unsplash.com/photo-1449034446853-66c86144b0ad?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2100&q=80',
'https://images.unsplash.com/photo-1470341223622-1019832be824?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2288&q=80',
'https://images.unsplash.com/photo-1448630360428-65456885c650?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2094&q=80',
'https://images.unsplash.com/photo-1534161308652-fdfcf10f62c4?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2174&q=80'
]
ReactDOM.render(
<Slider slides={images} autoPlay={2} />,
document.querySelector('.main')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment