I´m decomposing an Angular web in several microfrontends. One of these microfrontend handles the shopping cart, and it has a service to store products that have been added. My shell microfrontend needs to use that service to show in a icon how many items are in the car, add new items, etc.
Can I use a service in a microfrontend that is stored in a different microfrontend?
I´m using this tutorial, but it only explains how to route a page that are in another microfrontend.
Thanks.