From: Kai Moritz Date: Sun, 5 Jul 2020 11:54:52 +0000 (+0200) Subject: WIP: Extract interaction with store into service X-Git-Url: https://juplo.de/gitweb/?p=examples%2Fangular-tour-of-heroes;a=commitdiff_plain;h=refs%2Fheads%2Fcamunda WIP: Extract interaction with store into service --- diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 0a56826..b9b1648 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -1,5 +1,6 @@ import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; +import { HttpClientModule } from '@angular/common/http'; import { AppComponent } from './app.component'; import { VorgangComponent } from './vorgang/vorgang.component'; @@ -13,6 +14,7 @@ import { reducers, metaReducers } from './reducers'; ], imports: [ BrowserModule, + HttpClientModule, StoreModule.forRoot(reducers, { metaReducers })