Pagination

Buttons for page navigation

<Pagination
   currentPage={ 1 }
   numberOfItems={ 50 }
   itemsPerPage={ 10 }
   onChange={(page) => console.log('Changed to page ' + page)}
/>

Component import

import Pagination from 'paginering'

React props

PropertyTypeRequiredDescriptionDefault
classNamestringfalseAdditional classnames-
highContrastbooleanfalseHigh contrast versionfalse
currentPagenumberfalseSet current page (if value is out of range, it will not update)1
itemsPerPagenumbertrueSets the number of items per page, in order to calculate how many pages are needed-
numberOfItemsnumbertrueTotal number of items, in order to calculate how many pages are needed-
maxPageButtonsnumberfalseSets the maximum number of visible page buttons (excluding arrows)9
onChangefunctionfalseCallback function for any page button click, with the targeted page number as a parameter-