adizen-tanstack-table
Version:
Enhanced DataTable with TanStack Table
8 lines (7 loc) • 314 B
TypeScript
import { Table as TanStackTable } from "@tanstack/react-table";
import { TableTheme } from "../types";
export declare const TablePagination: <T>({ table, pageSizeOptions, theme, }: {
table: TanStackTable<T>;
pageSizeOptions?: number[];
theme: TableTheme;
}) => import("react/jsx-runtime").JSX.Element;