'use client' import { forwardRef, type ComponentProps } from 'react' import dynamic from 'next/dynamic' import { TableSkeleton } from '@/components/feedback/LoadingState' import type { PaginatedListHandle } from '@/components/paginated-list/PaginatedListImpl' export type { PaginatedListHandle } const PaginatedListImpl = dynamic(() => import('@/components/paginated-list/PaginatedListImpl'), { ssr: false, loading: () => (
), }) const PaginatedList = forwardRef>(function PaginatedList(props, ref) { return ( ) }) export default PaginatedList