I have a little web app with Angular 5 and out of a sudden I am getting this strange error message in my browser console:
ncaught Error: Template parse error
Every time I encounter this error I make the mistake of using reactive forms and using an input named @Input formGroup in one of my own components.
@Input()
formGroup: FormGroup;
@Input()
form: FormGroup;
@Input("form")
formGroup: FormGroup;