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