"use client"; import type { Table } from "@tanstack/react-table"; interface DataTablePaginationProps { table: Table; totalDbDataCount: number; } export function DataTablePagination({ table, totalDbDataCount }: DataTablePaginationProps) { const loadedCount = table.getFilteredRowModel().rows.length; return (

Loaded {`${loadedCount}`} of {`${totalDbDataCount}`}

); }