Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunjee17/ed5879a97a5bc593ecb8e8e24d9afb82 to your computer and use it in GitHub Desktop.
Save kunjee17/ed5879a97a5bc593ecb8e8e24d9afb82 to your computer and use it in GitHub Desktop.
component html
<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