I wonder how the event bus solution fit into a state management system like redux

I was just wondering how the event bus solution fit into a state management system like redux.

The state in redux is just a variable that persists in memory/localStorage/cookie. So you can “wrap” the redux object with the event bus if required. It can help to synchronize the state machine across multiple windows.