write html inside component angular

Solutions on MaxInterview for write html inside component angular by the best coders in the world

showing results for - "write html inside component angular"
Sophia
14 Jul 2020
1<div class="myClass">
2    <div class="myHeader" id="headerId"> Title </div>
3    <div class="myContent" id="contentId"> <ng-content></ng-content> </div>
4</div>
5
6<my-component title="Title" headerID=headerId contentID=contentID>
7    <<Some HTML code>>
8</my-component>
9