import React, { Component } from "react"; import Slider from "react-slick"; function FocusOnSelect() { const settings = { focusOnSelect: true, infinite: true, slidesToShow: 3, slidesToScroll: 1, speed: 500 }; return (
Click on any slide to select and make it current slide

1

2

3

4

5

6

); } export default FocusOnSelect;