A Redux store doesn’t have a limit on the amount of data stored , so you can pretty much use it to store almost anything, including bulky JSON data, data in table form, etc.16 Eki 2020
Read moreHow do you handle a large amount of data in react JS?
Below are four ways to solve list-related performance issues in React apps.
Read moreWhat are the limits of react JS?
However, there are a few limitations associated with ReactJS which are: Lack of Proper Documentation : There are a lot of tools and libraries like Redux and Reflux that can boost the performance of React. Even React itself is updated regularly. Unfortunately, that comes with a downside.
Read moreHow big can React state get?
There isn’t really a limit to what you can store there and React state itself doesn’t put any type of limitation on the size it can store. The issue with large data sets appears with rendering such data. If you have for example a table that needs to render thousands of rows, it will slow down the browser.
Read more