import { Photo, PhotoDateRange } from '@/photo'; import SiteGrid from '@/components/SiteGrid'; import AnimateItems from '@/components/AnimateItems'; import PhotoGrid from '@/photo/PhotoGrid'; import FilmSimulationHeader from './FilmSimulationHeader'; import { FilmSimulation } from '.'; export default function FilmSimulationOverview({ simulation, photos, count, dateRange, showMorePath, animateOnFirstLoadOnly, }: { simulation: FilmSimulation, photos: Photo[], count: number, dateRange?: PhotoDateRange, showMorePath?: string, animateOnFirstLoadOnly?: boolean, }) { return ( , ]} animateOnFirstLoadOnly /> } /> ); }