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
I'm using Angular 5.
In my case, I needed to import RactiveFormsModule too.
app.module.ts (or anymodule.module.ts)
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; @NgModule({ imports: [ CommonModule, FormsModule, ReactiveFormsModule ],