need help with react pagination
Always shows page 1 although, I'm able to switch to next pages
Just want to update the page number as well
Btw I'm using material ui
8 Replies
you will need to add code, and preferably a live version so people can see in their own browsers. Please give #how-to-ask-good-questions a look
can't provide the link as the project is not deployed yet!
I think this would be enough to explain my issue
I guess because of the type. You are passing a string (textContent) to setPageNum()
so what to do?
convert it to a number
Number(e.target.textContent)
otherwise, we actually do need more context (so a working example, for example with https://codesandbox.io/)
will try