I try to transclude content. I have the following markup for the component:
<body>
<bn-menu>
<span>test</span>
<p>I am content</p>
</bn-menu>
</body>
And the following component:
import { Component } from '@angular/core';
@Component({
selector: 'bn-menu',
template: '<div><div>Jo</div><ng-content></ng-content></div>'
})
export class MenuComponent { }
But only "Jo" gets displayed and not "test" or "I am content". What am I doing wrong?