import ImageCard from './ImageCard'; interface Image { url: string; } export default function ImageGrid({ title, images, batchId }: { title: string; images: Image[]; batchId: number }) { return (