I\'ve got the following error when launching my Angular app, even if the component is not displayed.
I have to comment out the so that my
In the module you are willing to use ngModel you have to import FormsModule
import { FormsModule } from '@angular/forms'; @NgModule({ imports: [ FormsModule, ], }) export class AbcModule { }