In my application, I've 2 apps on the same page - one is Angular app and the other is a React app.
The Angular app is the sidebar and the React app is main component. Both of these apps need information from each other. Is this possible?
I'd want to avoid using local storage or server side for this as the shared information is very dynamic and changes frequently(e.g - clicking a button in angular app triggering behaviour in React app).
The reason I've 2 apps on the same page is because I'm migrating a bigger angular application to react. But the whole thing has active users and I'm doing it in components.
If it's possible, it'd be very helpful to get some examples. Thanks!