diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2019-01-08 18:55:05 +0530 |
---|---|---|
committer | IBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com> | 2019-01-08 18:55:25 +0530 |
commit | 59537f121d269293ca021b133ea453129676ff86 (patch) | |
tree | be57ffd4c76a1631d27fb65d78edd4ab275ed016 /cds-ui/client/src/app/app.module.ts | |
parent | f352a874bd742784541ee67112ea2e648a5b3951 (diff) |
Setting up ngrx store
Registred application state reducer to app module
Issue-ID: CCSDK-816
Change-Id: I0e108456d674f070bc8c4002938d929ccce8fbe3
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
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] |