diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2019-01-07 22:24:41 +0530 |
---|---|---|
committer | IBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com> | 2019-01-07 22:25:09 +0530 |
commit | 5f6175d79c9a5780608a5805ad563669e96a8943 (patch) | |
tree | ab2a75d8bfc3434644987b8cd298e6baeb1f5f8e /cds-ui/client/src/app/app.module.ts | |
parent | 637fbd7608d1a4d5d595d3da993e8829d13f1304 (diff) |
App routing
added application routes
Issue-ID: CCSDK-816
Change-Id: Iba52d17aeabdb767c52cf6f8d56bf0bca1ae031c
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 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cds-ui/client/src/app/app.module.ts b/cds-ui/client/src/app/app.module.ts index 25ea016fa..d61731dde 100644 --- a/cds-ui/client/src/app/app.module.ts +++ b/cds-ui/client/src/app/app.module.ts @@ -30,6 +30,9 @@ 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'; @@ -65,7 +68,8 @@ import { AppComponent } from './app.component'; MatRadioModule, MatFormFieldModule, MatStepperModule, - HttpClientModule + HttpClientModule, + SharedModule ], providers: [], bootstrap: [AppComponent] |