import React, { useState } from "react"; import Slider from "react-slick"; function Resizable() { const [display, setDisplay] = useState(true); const [width, setWidth] = useState(600); const settings = { dots: true, infinite: true, speed: 500, slidesToShow: 3, slidesToScroll: 1 }; return (

Resizable Collapsible

1

2

3

4

5

6

); } export default Resizable;