import { type Image } from "../build"; interface YearPhotosProps { year: string; images: Image[]; } export default function YearPhotos({ year, images }: YearPhotosProps) { return (

{year}

{images.map((image) => ( {image.alt} ))}
); }