@maherunlocker/custom-react-table
Version:
dynamic table based on react table v7
7 lines (6 loc) • 322 B
TypeScript
import React from 'react';
import { TableInstance } from 'react-table';
export declare function TablePagination<T extends Record<string, unknown>>({ instance, defaultPaginationValues, }: React.PropsWithChildren<{
instance: TableInstance<T>;
defaultPaginationValues: number[];
}>): React.ReactElement | null;