Make carousel loop infinitely

This commit is contained in:
technobaboo
2021-07-22 08:11:53 -05:00
parent faf6f15baf
commit de6a42fc41

View File

@@ -24,7 +24,7 @@ function CarouselImage({image, alt, caption}) {
}
export default () => (
<Carousel autoPlay className="gallery">
<Carousel autoPlay infiniteLoop showThumbs={false} className="gallery">
{ImageList.map((props, idx) => (
<CarouselImage key={idx} {...props} />
))}