From ff8b851d1f9bca8530fce588f58680113fc0c445 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Sat, 21 Dec 2019 16:48:05 +0100 Subject: [PATCH] Fehler in Formular gefixed: ReactiveFormsModule fehlte --- src/app/app.module.ts | 2 ++ 1 file changed, 2 insertions(+) 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 }, -- 2.20.1