Écrire HTML à l'intérieur du composant angulaire

<div class="myClass">
    <div class="myHeader" id="headerId"> Title </div>
    <div class="myContent" id="contentId"> <ng-content></ng-content> </div>
</div>

<my-component title="Title" headerID=headerId contentID=contentID>
    <<Some HTML code>>
</my-component>
WindMillCode