import React from "react"; import Slider from "react-slick"; function Rtl() { const settings = { dots: true, infinite: true, slidesToShow: 3, slidesToScroll: 1, autoplay: true, autoplaySpeed: 2000, rtl: true }; return (

Right to Left

1

2

3

4

5

6

); } export default Rtl;