import React, { Component } from "react"; import Slider from "react-slick"; function CustomSlide(props) { const { index, ...otherProps } = props; return (

{index}

); } function CustomSlides() { const settings = { dots: true, infinite: true, speed: 500, slidesToShow: 1, slidesToScroll: 1 }; return (
); } export default CustomSlides;