I'm having a little problem with Angular Elements, here an exemple :
I have custom element with this selector "custom" and this template :
<ng-content><ng-content>
I have a component (not custom) with this selector "component" and this template :
<p> Hello Word </p>
and in my page my custom element looks like this :
<custom>
<!-- some HTML -->
<component></component>
<!-- some HTML -->
</custom>
my custom element work fine but my component is never load like is not interpreted by angular
Have you any idea why ? and how to do this ?