UNPKG

@maherunlocker/custom-react-table

Version:

**Custom-react-table** is based on <code>React-Table v7</code>: collection of hooks for **building powerful tables and datagrid experiences**. These hooks are lightweight, composable, and ultra-extensible, but **do not render any markup or styles for you*

6 lines (5 loc) 275 B
import { PropsWithChildren, ReactElement } from 'react'; import { TableInstance } from 'react-table'; export declare function TablePagination<T extends Record<string, unknown>>({ instance, }: PropsWithChildren<{ instance: TableInstance<T>; }>): ReactElement | null;