UNPKG

mfg-ui-components

Version:

React UI library with reusable components

10 lines (9 loc) 377 B
import "./Pagination.scss"; export interface Props { itemPerPageProp: number; totalPagesProp: any; onPageChange: (page: number) => void; paginationFunction?: (page: number) => void; } declare const Pagination: ({ itemPerPageProp, totalPagesProp, paginationFunction, onPageChange, }: Props) => import("react/jsx-runtime").JSX.Element; export default Pagination;