8 lines
195 B
HTML
8 lines
195 B
HTML
<!-- #docregion -->
|
|
<button (click)="toggleHeading()">Toggle Heading</button>
|
|
<h1 *ngIf="showHeading">Hello Angular</h1>
|
|
|
|
<h3>List of Heroes</h3>
|
|
<div *ngFor="let hero of heroes">{{hero}}</div>
|
|
|