import { Photo, PhotoDateRangePostgres } from '@/photo'; import PhotoGridContainer from '@/photo/PhotoGridContainer'; import RecipeHeader from './RecipeHeader'; export default function RecipeOverview({ recipe, photos, count, dateRange, animateOnFirstLoadOnly, }: { recipe: string, photos: Photo[], count: number, dateRange?: PhotoDateRangePostgres, animateOnFirstLoadOnly?: boolean, }) { return ( , animateOnFirstLoadOnly, }} /> ); }