really finding this framework giving lots of features.My question is I am trying to request around 38916(>30000) amount of data in my React application and then showing them in a grid view in React.I am using Axios to load the large datasets coming through API.Could someone tell me how to load huge amount of records in less amount of time in React JS?Also I want to send the request for multiple api parallely.If anyone have any idea or better one Please post soon.
Answer
Your options:
- Pagination/lazy load. If it includes images too then lazy load images too lazy load images with react
- Use virtualised list to render all data at once
virtualised list