import { useState } from 'react' import Lightbox from 'yet-another-react-lightbox' import 'yet-another-react-lightbox/styles.css' import Image from './Image' const PhotoGallery = (props) => { const { title, data } = props const [isOpen, setIsOpen] = useState(false) const [photoIndex, setPhotoIndex] = useState(0) const slides = data.map((d) => { return { src: d } }) return (