import { useTable } from './useTable'; export const useTotal = () => { const { field, service, props: { clientSidePagination }, } = useTable(); return clientSidePagination ? field?.value?.length : service?.data?.total; };