I have a NavBar component with a dropdown and another component that will display a content depending on what is selected in that dropdown.
The problem is that I do not know how to pass that selected from the NavBar component to the component it displays.
I have seen this question: Communication and States between ANGULAR 2 components which says to do a service with which I subscribe to the navbar from the counter and in the navbar change the observable. Also the user @KarlosCode comments: "Redux just does that elevated to the maximum expression".
What would that service be like? Do you recommend Redux? if so, do you know of any example for this case?