Created
June 3, 2019 08:11
-
-
Save kunjee17/ed5879a97a5bc593ecb8e8e24d9afb82 to your computer and use it in GitHub Desktop.
component html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>{{title}}</h1> | |
<h2>My favorite hero is: {{myHero.name}}</h2> | |
<p>Heroes:</p> | |
<ul> | |
<li *ngFor="let hero of heroes"> | |
{{ hero.name }} | |
</li> | |
</ul> | |
<p *ngIf="heroes.length > 3">There are many heroes!</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment