write html inside component angular

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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