I am creating a reactjs web app, where user has 4 multiple items; lets say A, B, C, and D. App state is managed by Redux.
If user selects any of the above items, he is provided with streaming data for those items and lots of mathematical operators to apply.
I want to separate memory space of each item for better management of state. A user may also want to monitor lets say all the 4 items at the same time. Therefore I want to provide option for opening each item in its own tab with their own redux state.
Can anyone tell me how to go about it?
The main problem here is not just injecting Reducers but more about how to start a new instance of the App...a react app spawning another react app.