This code doesn't work!
<input type="checkbox" value="1" #c>
<div *ngIf="c.checked">Show if checkbox is checked</div>
But this works! Why??!
<input type="checkbox" value="1" (change)="true" #c>
<div *ngIf="c.checked">Show if checkbox is checked</div>