X-Git-Url: https://juplo.de/gitweb/?p=examples%2Fangular-tutorial;a=blobdiff_plain;f=src%2Fapp%2Fapp.module.ts;fp=src%2Fapp%2Fapp.module.ts;h=84a98b34bd05d643b158dac7aef5c1202431fa9f;hp=038c3cf7168f0ed61db99c652b46a588a6a0d7cb;hb=ff8b851d1f9bca8530fce588f58680113fc0c445;hpb=4e252c8302c1172c971830e29b4e46d3a2efd50a 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 },