Content projection is an important concept when developing user interfaces. It allows us to project pieces of content into different places of the user interface of our application. Web components solve this problem with the content element. In AngularJS, it is implemented with the infamous transclusion.
Angular is inspired by modern web standards, especially web components, which led to the adoption of some of the methods of content projection used there. In this section, we'll look at them in the context of Angular using the ng-content directive.