'use client'; import { PATH_ADMIN_PHOTOS } from '@/app/path'; import InfinitePhotoScroll from '../photo/InfinitePhotoScroll'; import AdminPhotosTable from './AdminPhotosTable'; import { ComponentProps } from 'react'; export default function AdminPhotosTableInfinite({ initialOffset, itemsPerPage, hasAiTextGeneration, canEdit, canDelete, }: { initialOffset: number itemsPerPage: number } & Omit, 'photos'>) { return ( {({ photos, onLastPhotoVisible, revalidatePhoto }) => } ); }