// @Component({ selector: 'app-demo', template: '{{title}} ', }) export class DemoComponent { title = 'Works!'; } //Content to be projected: This is projected content! //The output will be: Works! This is projected content!