import 'photoswipe/dist/photoswipe.css' import { Gallery, Item } from 'react-photoswipe-gallery' import Image from './Image' const PhotoGallery = (props) => { const { title, data } = props return ( {data.length ? data.map((d: string) => ( {({ ref, open }) => {title}} )) : null} ) } export default PhotoGallery