Common Module
Can't bind to 'ngIf' since it isn't a known property of... 라는 메시지를 발견하면 Common Module을 넣어야 한다.
import { CommonModule } from '@angular/common';
..........
@NgModule({
imports: [
CommonModule,
..........
]
..........
})