'use client'; import { INFINITE_SCROLL_GRID_MULTIPLE } from '.'; import InfinitePhotoScroll from './InfinitePhotoScroll'; import PhotoGrid from './PhotoGrid'; import { ComponentProps } from 'react'; export default function PhotoGridInfinite({ cacheKey, initialOffset, canStart, tag, camera, simulation, focal, animateOnFirstLoadOnly, canSelect, }: { cacheKey: string initialOffset: number } & Omit, 'photos'>) { return ( {({ photos, onLastPhotoVisible }) => } ); }