Hello guys,
I'm wondering what is your favourite approach for handling state management across micro front-end apps?
For example:
I've many run time apps as isolated standalone applications, each one represents a flow of two or three pages, then we've to wire them all by one container/host app.
Each flow/ micro app might have their own state management, however, we might need to know about another micro application state!
I've found approach that implementing a shared app as a global state and it has to be wired up with the nested sub apps.
Moreover, I've found a npm package that is responsible for handling global redux store across multiple micro apps.
Finally, I need to make sure what is your recommendation for implementing global states in micro frontend react apps?
Thanks in advance!