preact-paginate
v1.1.2
Published
A dynamic pagination component for use in Preact application
Downloads
13
Maintainers
Readme
preact-paginate
Installation
npm install preact-paginate -SThis is how it looks

Usage
Code Example:
import Pagination from "preact-paginate";
onChangePageClick(pageNo) {
this.setState({ currentPageNo: pageNo });
//Pass this pageNo to your API call along with the number of records you want to display on one page
console.log(pageNo);
}
render(
<div>
<Pagination count={this.state.totalPages || 255} currentPageNo={this.state.currentPageNo || 1} onChangePageClick={this.onChangePageClick()} />
</div>,
document.body
);Props
Properties used to customise the rendering:
| Name | Type | Description |
|:---- | ---- | ------ |
| count | Number*(required)* | Total Number of records to be displayed on list |
| currentPageNo | Number*(required)* | Current Page Number
| onChangePageClick | Function*(required)* | Callback function to be called when user clicks next / previous button
