Hsay28
Results
1
issues of
Hsay28
Here is my code const [currentImageIndex, setCurrentIndex] = useState(0); const gotoPrevious = () => currentImageIndex > 0 && setCurrentIndex(currentImageIndex - 1); const gotoNext = (GalleryImages: any) => { console.log(currentImageIndex); currentImageIndex...