Igor Simic
3 years ago

How to fix Angular error- Cant bind to formControl since it isnt a known property of input


If you are working with Angular and you are experiencing the error:  Can't bind to 'formControl' since it isn't a known property of 'input'
 here you can find solution for it!

The solution is simple:
Just include ReactiveFormsModule in your module and the problem will be gone:
import { ReactiveFormsModule} from '@angular/forms';

@NgModule({
  imports: [
    ReactiveFormsModule,
  ],
})
export class AppModule {}