Skip to content

Instantly share code, notes, and snippets.

@ericjeker
Last active March 13, 2020 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericjeker/c66605264ac6469ad89c2159b8d2b1d5 to your computer and use it in GitHub Desktop.
Save ericjeker/c66605264ac6469ad89c2159b8d2b1d5 to your computer and use it in GitHub Desktop.
Content projection in Angular
@Component({
selector: 'app-my-content',
template: '<ng-content></ng-content>',
})
class MyContent {
}
<app-my-content><p>This will be projected in the component</p></app-my-content>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment