UNPKG

@surveycake/rc

Version:

react component of surveycake

15 lines (14 loc) 329 B
import React from 'react'; declare type PaginationProps = { /** * Current pageIndex. */ pageIndex: number; /** * Total pages. */ totalPages: number; setPageIndex: (pageIndex: number) => void; }; declare const Pagination: React.FC<PaginationProps>; export default Pagination;