0.0.3 • Published 5 years ago

@bryandbor/react-redux-pagination v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

React Redux Pagination

Simple pagination for React-Redux applications

NPM JavaScript Style Guide

Install

npm install --save @bryandbor/react-redux-pagination

Usage

import {withPagination} from '@bryandbor/react-redux-pagination';

const MyPaginatedComponent = ({page, perpage, cuunt, collection, setPage, setPerPage}) => {
  return ( ... );
};

export default withPagination(MypaginatedComponent);