UNPKG

@coconut-software/ui

Version:

React components for faster and easier web development.

10 lines (9 loc) 274 B
export type HandlesPaginationChange = (args: { limit: number; page: number; }) => void; interface PaginationProps { onChange: HandlesPaginationChange; } declare function Pagination({ onChange }: PaginationProps): JSX.Element; export default Pagination;