'use client'; import InfinitePhotoScroll from '../photo/InfinitePhotoScroll'; import AdminPhotosTable from './AdminPhotosTable'; export default function AdminPhotosTableInfinite({ initialOffset, itemsPerPage, }: { initialOffset: number itemsPerPage: number }) { return ( {({ photos, onLastPhotoVisible, revalidatePhoto }) => } ); }