react-paginate
A ReactJS component to render a pagination.
By installing this component and writing only a little bit of CSS you can obtain this:
or
Installation
Install react-paginate
with npm:
$ npm install react-paginate
For CommonJS users:
var ReactPaginate = ;
Read the code of sample/sample.jsx. You will quickly understand
how to make react-paginate
work with a list of objects.
Sample project (demo)
Clone the repository and move into:
$ git clone git@github.com: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/
.
Contribute
- 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