Example: `<component [input]="context"/><component2 [input]="context"/>` Renders as: `<component [input]="context"><component2 [input]="context"></component2></component>` When it should render as: `<component [input]="context"></component><component2 [input]="context"></component2>` They both get rendered, but one becomes the child of the other