Can someone clarify this syntax (specifically *mycomponent) from an external template (not declared inline within the component decorator):
<my-component *mycomponent><my-component>
Is it just a shorthand way of injecting a component into an external html view/template? Basically, I am asking if it is the equivalent of injecting the 'SubComponent' directive in the inline template below:
@Component({
selector: 'my-component',
directives: [SubComponent],
template: `
...
`
})