I have a parent component with three child components arranged in the following hierarchy:
<parent-component>
<wrapper-layer>
<inner-most>
</inner-most>
</wrapper-layer>
</parent-component>
I am unsure of how to pass a component from <parent-component>
to <inner-most>
through <wrapper-layer>
.
During transclusion, how can I prevent the passed component from being displayed in the <wrapper-layer>
?