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
Yes that's it, in the app.module.ts, I just added :
import { FormsModule } from '@angular/forms'; [...] @NgModule({ imports: [ [...] FormsModule ], [...] })