I have next structure:
Child component template (it's the simplest):
<div>Child</div>
Parent component template:
<div><h1>Parent</h1>
<middle>
<ng-content></ng-content>
</middle>
</div>
And as you can see we have one more in the middle, Middle Component templtate:
<div>
<h1>Middle</h1>
<ng-content></ng-content>
</div>
And I am using next way:
<parent>
<child>hi</child>
<child>there</child>
</parent>
Problem: I couldn't get ContentChildren of Child components in Middle component?
Should angular2 support it? If not, then why?
Plnkr Demo - see output in console