@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'
}
}