import React from 'react' import { MediaModal } from './MediaModal' import { ModalProps } from './Modal' export type GalleryModalProps = Omit & { images: React.ReactNode[] } export function GalleryModal({ images, ...props }: GalleryModalProps) { return ( {/* TODO next/prev etc */} {images} ) }