Can't bind to 'ngModel' since it isn't a known property of 'select'.ng code example
Example: Uncaught Error: Template parse errors: Can't bind to 'ngModel'
Try to import FormModule an app.module.ts file
import { FormsModule } from '@angular/forms'
@NgModule({
declarations: [
....
],
imports: [
...,
FormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }