UNPKG

tabletable

Version:

A simple and extremely flexible table component written in React.

10 lines (9 loc) 264 B
import { FunctionComponent } from 'react'; type Props = { displayPages: number; maxPage: number; currentPage: number; onPageChange: (page: number) => void; }; declare const TabletablePager: FunctionComponent<Props>; export default TabletablePager;