import { Photo, PhotoDateRange } from '@/photo'; import PhotoGridContainer from '@/photo/PhotoGridContainer'; import FocalLengthHeader from './FocalLengthHeader'; export default function FocalLengthOverview({ focal, photos, count, dateRange, animateOnFirstLoadOnly, }: { focal: number, photos: Photo[], count: number, dateRange?: PhotoDateRange, animateOnFirstLoadOnly?: boolean, }) { return ( , animateOnFirstLoadOnly, }} /> ); }