From: Kai Moritz Date: Sat, 21 Dec 2019 15:48:05 +0000 (+0100) Subject: Fehler in Formular gefixed: ReactiveFormsModule fehlte X-Git-Url: https://juplo.de/gitweb/?p=examples%2Fangular-tutorial;a=commitdiff_plain;h=ff8b851d1f9bca8530fce588f58680113fc0c445;hp=4e252c8302c1172c971830e29b4e46d3a2efd50a Fehler in Formular gefixed: ReactiveFormsModule fehlte --- diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 038c3cf..84a98b3 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -1,6 +1,7 @@ import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; +import { ReactiveFormsModule } from '@angular/forms'; import { HttpClientModule } from '@angular/common/http'; import { AppComponent } from './app.component'; @@ -23,6 +24,7 @@ import { ShippingComponent } from './shipping/shipping.component'; ], imports: [ BrowserModule, + ReactiveFormsModule, HttpClientModule, RouterModule.forRoot([ { path: '', component: ProductListComponent },