UNPKG

chakra-paginated-table

Version:

**Chakra Paginated Table** is a customizable and feature-rich table component built with Chakra UI, inspired by the pagination functionality of Ant Design (antd). It allows you to easily render a paginated table by providing data and column configurations

13 lines (12 loc) 526 B
/// <reference types="react" /> import { ITablePagination } from "./definitions"; interface IProps { paginationData: ITablePagination; } /**pagination component. By passing the props, you have access to pagination * And can control pagination. * @usage - If you desire to use chakra table, consider using table pagination from this package. */ declare function Pagination({ paginationData }: IProps): JSX.Element; declare const _default: import("react").MemoExoticComponent<typeof Pagination>; export default _default;