// third-party import Carousel, { ViewType } from 'react-images'; // ==============================|| POPUP IMAGES BOX / LIGHT BOX ||============================== // export interface PhotoProps extends ViewType { srcSet: string; title: string; } export interface LightBoxProps { currentImage: number; photos: PhotoProps[]; } const LightBox = ({ currentImage, photos }: LightBoxProps) => ( <> ({ ...x, srcset: x.srcSet, caption: x.title }))} /> ); export default LightBox;