How to fetchData when react component is in viewport

I am working on a social media type of project, using ReactJS & django, I don't know how do pagination in react (load more post when end of the page is reached) I have implemented pagination on backend using drf

api endpoint is something like: /post/api/?page=2

response is like:

{
    "prev": true,
    "next": true,
    "data": [...]
}
Back to Top