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
For my scenario, I had to import both [CommonModule] and [FormsModule] to my module
import { NgModule } from '@angular/core'
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { MyComponent } from './mycomponent'
@NgModule({
imports: [
CommonModule,
FormsModule
],
declarations: [
MyComponent
]
})
export class MyModule { }