How do I react to events (like resetting a form) from a dumb component?
What I currently do is subscribe to the event directly from the component (this makes it a smart component though)
Another solution I thought of is exposing a function that resets the form, and using viewChild in the smart component to reset it from there (this seems better than what I have)
How would you approach this?