UNPKG

react-cust-table

Version:

> Multiple responsive design, Pagination support, Collapsible row, Easy Customization,

11 lines (10 loc) 323 B
import * as React from "react"; interface PaginationProps { totalPages?: number; currentPage?: number; setCurrentPage: (page: number) => void; prevBtnLabel?: string | React.ReactNode; nextBtnLabel?: string | React.ReactNode; } declare const Pagination: React.FC<PaginationProps>; export { Pagination };