
Understanding Transclusion
Transclusion means the inclusion of the content of one document in another document.
Content Projection in Angular with ng-content
Let’s say you have a home component with a decorator that goes a bit like this:
@Component({ selector: 'home', template: ` <h1>Heroic Title</h1> <p>Something good...</p> ` })
And...