I have one API which return thousands of records. When I am rendering that on screen, UI starts lagging. So I thought to implement it using lazy loading.
I want to load more data as user scroll and remove elements from UI and render new elements as user is scrolling means I just want to render that data on UI which is needed but I am not able to find any good resource for lazy loading table data.
I have created one code sandbox for that.
https://codesandbox.io/s/gallant-nightingale-glvdp8
Can anyone please help with the same?
Thank you.