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
You need to import the FormsModule
Open app.module.ts
and add line
import { FormsModule } from '@angular/forms';
and
@NgModule({ imports: [ FormsModule ], })