Angular - Component Interaction
Consider this component template:
And this usage:
What will be rendered inside the <section> element?
<section> <ng-content select=".header"></ng-content> <ng-content select=".body"></ng-content> </section>
And this usage:
<my-section> <div class="header">Title</div> <div class="body">Content</div> </my-section>
What will be rendered inside the <section> element?
