react-js-pagination and react-paginate are both React components designed to render pagination controls for navigating through datasets. They handle the UI logic for displaying page numbers, next/previous buttons, and active states, allowing developers to focus on data fetching rather than UI math. While they solve the same problem, they differ in how they accept data (total items vs. page count), their maintenance status, and their approach to accessibility and customization.
Both react-js-pagination and react-paginate solve the same core problem — rendering a clickable list of pages to navigate through large datasets. However, they take different approaches to state management, prop APIs, and extensibility. Understanding these differences is critical when selecting a dependency that will live in your codebase for years.
The most significant architectural difference lies in what data each component expects from the parent.
react-js-pagination accepts the total number of items and calculates the page count internally based on a page size.
// react-js-pagination: Pass total items
import Pagination from 'react-js-pagination';
function MyComponent() {
return (
<Pagination
total={100} // Total number of items
pageSize={10} // Items per page
current={1} // Current active page
onChange={(page) => handlePageChange(page)}
/>
);
}
react-paginate requires the parent to calculate and pass the total page count.
// react-paginate: Pass calculated page count
import ReactPaginate from 'react-paginate';
function MyComponent() {
const itemCount = 100;
const pageSize = 10;
const pageCount = Math.ceil(itemCount / pageSize);
return (
<ReactPaginate
pageCount={pageCount} // Must calculate externally
onPageChange={(e) => handlePageChange(e.selected)}
forcePage={0} // Controls active page
/>
);
}
Both libraries rely on CSS classes for styling rather than inline styles or CSS-in-JS solutions. This means you need to provide your own stylesheet or override their defaults.
react-js-pagination uses specific props to assign class names to the container and active elements.
activeClass to highlight the current page.ul and li elements.// react-js-pagination: Class props
<Pagination
activeClass="active" // Class for the current page li
itemClass="page-item" // Class for each li
linkClass="page-link" // Class for each anchor
containerClass="pagination" // Class for the ul container
/>
react-paginate offers more granular control over class names for different states.
// react-paginate: Granular class props
<ReactPaginate
containerClassName="pagination" // Class for the ul
activeClassName="active" // Class for the active li (older versions)
activeLinkClassName="active-link" // Class for the active a (newer versions)
disabledClassName="disabled" // Class for disabled next/prev
previousClassName="previous" // Class for previous button
/>
Accessibility is a key differentiator, especially for public-facing applications that must comply with WCAG standards.
react-js-pagination provides basic semantic HTML.
// react-js-pagination: Basic semantics
// No built-in aria-label props for next/prev buttons in standard API
<Pagination
prevText="<"
nextText=">"
// Accessibility relies on external CSS or wrappers
/>
react-paginate includes better support for accessibility out of the box.
// react-paginate: ARIA support
<ReactPaginate
previousLabel="Previous page"
nextLabel="Next page"
breakLabel="..."
// You can pass aria-labels via container props if needed
containerClassName="pagination"
/>
When default HTML structures do not fit your design system, you need to know how much you can customize the output.
react-js-pagination is less flexible regarding custom rendering.
ul > li > a.// react-js-pagination: Limited customization
// Cannot easily inject custom icons or components into page items
<Pagination
prevText={<span className="icon-prev">←</span>}
nextText={<span className="icon-next">→</span>}
// Page numbers are rendered as text only
/>
react-paginate allows more control through specific render props.
// react-paginate: Render props
<ReactPaginate
breakLabel={<span className="break">...</span>}
renderOnZeroPageCount={null} // Hides component if no pages
pageLinkClassName="page-link" // Style the links directly
/>
| Feature | react-js-pagination | react-paginate |
|---|---|---|
| Input Data | total items + pageSize | pageCount (calculated) |
| Page Change | Returns page number (page) | Returns event object { selected } |
| Active State | activeClass on li | activeClassName on li / activeLinkClassName on a |
| Maintenance | Lower frequency updates | Active maintenance |
| Accessibility | Basic HTML semantics | Better ARIA label support |
| Flexibility | Rigid structure | More configurable props |
react-js-pagination is a straightforward utility that hides the math of pagination from you. It is useful if you want to drop in a component and pass it a total count without calculating pages in your state management. However, its development pace is slower, and it may require more work to make fully accessible.
react-paginate is the industry standard for React pagination. It follows the "controlled component" philosophy strictly, requiring you to manage the page count logic. This extra step ensures you have full visibility into your data flow. With better accessibility features and active maintenance, it is the safer choice for production applications.
Final Thought: For new projects, react-paginate is the recommended choice due to its robustness and alignment with modern React patterns. Use react-js-pagination only if you are constrained by legacy requirements or specifically prefer its internal page calculation logic.
Choose react-js-pagination if you are maintaining a legacy codebase that already relies on its specific API, particularly its ability to calculate pages from a total item count internally. It is also suitable for simple prototypes where you want to pass total items and let the component handle the math. However, be aware that it receives fewer updates and may lack modern accessibility features found in newer alternatives.
Choose react-paginate for new projects due to its active maintenance, strong community support, and better alignment with controlled React patterns. It requires you to calculate the page count externally, which offers more explicit control over data flow. It is the preferred choice when accessibility, customization via render props, and long-term stability are priorities for your application.
A ReactJS dumb component to render a pagination.
The component comes with no built-in styles. HTML layout compatible with Bootstrap 3 pagination stylesheets.
If you would like it to work for Bootstrap 4, you will need to add 2 additional props when using this component:
itemClass="page-item"
linkClass="page-link"
Install react-js-pagination with npm:
$ npm install react-js-pagination
Very easy to use. Just provide props with total amount of things that you want to display on the page.
import React, { Component } from "react";
import ReactDOM from "react-dom";
import Pagination from "react-js-pagination";
require("bootstrap/less/bootstrap.less");
class App extends Component {
constructor(props) {
super(props);
this.state = {
activePage: 15
};
}
handlePageChange(pageNumber) {
console.log(`active page is ${pageNumber}`);
this.setState({activePage: pageNumber});
}
render() {
return (
<div>
<Pagination
activePage={this.state.activePage}
itemsCountPerPage={10}
totalItemsCount={450}
pageRangeDisplayed={5}
onChange={this.handlePageChange.bind(this)}
/>
</div>
);
}
}
ReactDOM.render(<App />, document.getElementById("root"));
Check Live example

| Name | Type | Default | Description |
|---|---|---|---|
totalItemsCount | Number | Required. Total count of items which you are going to display | |
onChange | Function | Required. Page change handler. Receive pageNumber as arg | |
activePage | Number | 1 | Required. Active page |
itemsCountPerPage | Number | 10 | Count of items per page |
pageRangeDisplayed | Number | 5 | Range of pages in paginator, exclude navigation blocks (prev, next, first, last pages) |
prevPageText | String / ReactElement | ⟨ | Text of prev page navigation button |
firstPageText | String / ReactElement | « | Text of first page navigation button |
lastPageText | String / ReactElement | » | Text of last page navigation button |
nextPageText | String / ReactElement | ⟩ | Text of next page navigation button |
getPageUrl | Function | Generate href attribute for page | |
innerClass | String | pagination | Class name of <ul> tag |
activeClass | String | active | Class name of active <li> tag |
activeLinkClass | String | Class name of active <a> tag | |
itemClass | String | Default class of the <li> tag | |
itemClassFirst | String | Class of the first <li> tag | |
itemClassPrev | String | Class of the previous <li> tag | |
itemClassNext | String | Class of the next <li> tag | |
itemClassLast | String | Class of the last <li> tag | |
disabledClass | String | disabled | Class name of the first, previous, next and last <li> tags when disabled |
hideDisabled | Boolean | false | Hide navigation buttons (prev, next, first, last) if they are disabled. |
hideNavigation | Boolean | false | Hide navigation buttons (prev page, next page) |
hideFirstLastPages | Boolean | false | Hide first/last navigation buttons |
linkClass | String | Default class of the <a> tag | |
linkClassFirst | String | Class of the first <a> tag | |
linkClassPrev | String | Class of the previous <a> tag | |
linkClassNext | String | Class of the next <a> tag | |
linkClassLast | String | Class of the last <a> tag |