diff options
author | Dan Timoney <dtimoney@att.com> | 2019-01-09 01:16:37 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-09 01:16:37 +0000 |
commit | db35bf8fada1634eb45cde49a617f98b98694b60 (patch) | |
tree | 9e2ddf13595b45fc0141ce4216749fc993a53502 /cds-ui/client/src/app/app.module.ts | |
parent | 2772941b61cb2435ebdfd9d9b252734bce59ffea (diff) | |
parent | 59537f121d269293ca021b133ea453129676ff86 (diff) |
Merge "Setting up ngrx store"
Diffstat (limited to 'cds-ui/client/src/app/app.module.ts')
-rw-r--r-- | cds-ui/client/src/app/app.module.ts | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/cds-ui/client/src/app/app.module.ts b/cds-ui/client/src/app/app.module.ts index d61731dde..1df9d0756 100644 --- a/cds-ui/client/src/app/app.module.ts +++ b/cds-ui/client/src/app/app.module.ts @@ -31,24 +31,15 @@ import { HttpClientModule } from '@angular/common/http'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { SharedModule } from './common/shared/shared.module'; - - -// import { blueprintReducer } from './common/store/reducers/blueprint.reducer'; -// import { HeaderComponent, AboutComponent, PageNotFoundComponent, HomeComponent } from './common/shared/components/index'; -// import { SharedModule } from './common/shared/shared.module'; +import { CoreModule } from './common/core/core.module'; @NgModule({ declarations: [ - AppComponent, - // HeaderComponent, - // AboutComponent, - // PageNotFoundComponent, - // HomeComponent + AppComponent ], imports: [ BrowserModule, CommonModule, - // StoreModule.forRoot({blueprint: blueprintReducer}), AppRoutingModule, ReactiveFormsModule, BrowserAnimationsModule, @@ -69,7 +60,8 @@ import { SharedModule } from './common/shared/shared.module'; MatFormFieldModule, MatStepperModule, HttpClientModule, - SharedModule + SharedModule, + CoreModule ], providers: [], bootstrap: [AppComponent] |