A ReactJS component to render a pagination.
By installing this component and writing only a little bit of CSS you can obtain this:
or
Install react-paginate
with npm:
$ npm install react-paginate
For CommonJS users:
var ReactPaginate = require('react-paginate');
Read the code of sample/sample.jsx. You will quickly understand
how to make react-paginate
work with a list of objects.
Clone the repository and move into:
$ git clone [email protected]:AdeleD/react-paginate.git
$ cd react-paginate
Install dependencies:
$ make install
Prepare the demo:
$ make sample
Run the server:
$ make serve
Open your browser and go to http://localhost:3000/
.
- Submit an issue
- Fork the repository
- Create a dedicated branch (never ever work in
master
) - Fix bugs or implement features
- Always write tests
Run tests:
$ make test