Montserrat font from Google Fonts
"Can't bind to 'formGroup' since it isn't a known property of 'form" Code Answer's My code environment is Angular 9, and when I set up reactive form, I met this error: error NG8002: get Montserrat font from Google Fonts . I did s Solution 1: If the RecipeEditComponent belongs to AppModule, you need to declare the RecipeEditComponent in app.module.ts : import { RecipeService } from './recipes/recipe.service' ; import { BrowserModule } from '@angular/platform-browser' ; import { NgModule } from '@angular/core' ; import { FormsModule , ReactiveFormsModule } from '@angular/forms' ; import { RoutingModule } from './routing.module' ; import { ShoppingListService } from './shopping-list/shopping-list.service' ; import { AppComponent } from './app.component' ; // Add following line: import { RecipeEditComponent } from './recipes/recipe-edit/recipe-edit.component'...