How can I access other components that are in the same view but aren't children? My parent component has some components.
parent.component.html
<html>
<address-component></address-child>
<name-component></name-component>
</html>
So how can I access name-component
from the address-component
? They do not have a relationship of their own except that they lie in the same view.