I writing an application which receives real time updates,the updates are received every second, this data is displayed in multiple charts.
Shall It store the data in redux store (state) ?
I was considering the option to just store the filters (state) in the the store, and use and external object to host the data.
How would you do it ?
Any help is really appreciated :)
Storing data in the state should be fine.
Most helpful comment
Storing data in the state should be fine.