import React, { useState } from 'react' import { Button } from 'UI'; export default function ImageViewer( { source, activeIndex, onClose } ) { const [currentIndex, setCurrentIndex] = useState(activeIndex) const onPrevClick = () => { setCurrentIndex(currentIndex - 1); } const onNextClick = () => { setCurrentIndex(currentIndex + 1); } return (