react-paginate
react-paginate copied to clipboard
BUG in initialPage props
when using initalPage Props, the onPageChange function gets called automatically
Will the disableInitialCallback-prop solve it for you? It should prevent onPageChange from being triggered on the initial render.
<ReactPaginate
// ...other props
initalPage={0}
disableInitialCallback
onPageChange={() => {}}
/>