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