()
| 4 | import "react-responsive-carousel/lib/styles/carousel.min.css"; |
| 5 | |
| 6 | export default function CarouselComp() { |
| 7 | return ( |
| 8 | <> |
| 9 | <div className='max-w-[1200px] mx-auto'> |
| 10 | <Carousel showArrows={true} autoPlay={true} interval={3000} infiniteLoop={true} showThumbs={false}> |
| 11 | <div> |
| 12 | <img src="/images/banner/1.png" /> |
| 13 | </div> |
| 14 | <div> |
| 15 | <img src="/images/banner/2.png" /> |
| 16 | </div> |
| 17 | <div> |
| 18 | <img src="/images/banner/3.png" /> |
| 19 | </div> |
| 20 | </Carousel> |
| 21 | </div> |
| 22 | </> |
| 23 | ); |
| 24 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected