how to bring page to first page in react paginate in react?
<ReactPaginate
className="pagination"
nextLabel=">"
previousLabel="<"
pageCount={Math.ceil(totalCount / payload.params.size)}
pageRangeDisplayed={6}
renderOnZeroPageCount={null}
onPageChange={handlePageClick}
/>
can anybody tell how to get to first page each time my data is changing? i have tried forcePage but it is not working