import React, { Component } from "react"; import Slider from "react-slick"; function SwipeToSlide() { const settings = { className: "center", infinite: true, centerPadding: "60px", slidesToShow: 5, swipeToSlide: true, afterChange: function(index) { console.log( `Slider Changed to: ${index + 1}, background: #222; color: #bada55` ); } }; return (

1

2

3

4

5

6

7

8

9

); } export default SwipeToSlide;