import Image from 'next/image' import { blurHashToDataURL } from '../utils.js' export function ImageGrid({ images, setCurrentImage }) { return (
{images && images.map(({ photo_id, photo_url, photo_image_url, photo_aspect_ratio, photo_width, photo_height, blur_hash, photo_description, ai_description, similarity, }) => (
{ setCurrentImage({ photo_id, photo_url, photo_image_url, photo_aspect_ratio, photo_width, photo_height, blur_hash, photo_description, ai_description, similarity, }); }} > {photo_description
))}
) }