When working with Angular you may encounter the error : Can’t bind to ‘formGroup’ since it isn’t a known property of ‘form’. This post shows how to fix it.

Solution

This error indicates that your module is missing the ReactiveFormsModule import. Import it like below :

If you have a multi module application. You need to import the ReactiveFormsModule in each module.

References