NetanelBasal
3/21/2017 - 3:34 PM

app.ngif.ts

@Component({
  selector: 'my-app',
  template: `
    <div>
      <h2 *myNgIf="condition">Hello {{name}}</h2>
      <button (click)="condition = !condition">Click</button>
    </div>
  `,
})
export class App {
  name:string;
  condition = false;
  constructor() {
    this.name = 'Angular2'
  }
}