react-paginationer
v1.0.4
Published
Paginate anything in any way with functionized React children
Downloads
5
Maintainers
Readme
Install
yarn add react-paginationer
Use
import Pagination from "react-paginationer";
<Pagination items={props.articles} itemsPerPage={10}>
{({
currentPageItems,
currentPageNumber,
totalPagesCount,
hasNextPage,
hasPrevPage,
goToNextPage,
goToPrevPage
}) => {
return (
// Your UI
);
}}
</Pagination>