You can pass the parent component into a child component via constructor. But this generally is not recommended, because it introduces coupling between components. Depending on your needs, you can pass a callback to the child component and act in the parent, or you can pass a Flow/Observable to child and send events from the parent, etc.