From 5f6175d79c9a5780608a5805ad563669e96a8943 Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Mon, 7 Jan 2019 22:24:41 +0530 Subject: App routing added application routes Issue-ID: CCSDK-816 Change-Id: Iba52d17aeabdb767c52cf6f8d56bf0bca1ae031c Signed-off-by: Arundathi Patil --- cds-ui/client/src/app/common/shared/shared.module.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cds-ui/client/src/app/common/shared') diff --git a/cds-ui/client/src/app/common/shared/shared.module.ts b/cds-ui/client/src/app/common/shared/shared.module.ts index 202a41870..e3760b01c 100644 --- a/cds-ui/client/src/app/common/shared/shared.module.ts +++ b/cds-ui/client/src/app/common/shared/shared.module.ts @@ -21,18 +21,18 @@ limitations under the License. import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; -// import { HomeComponent } from './components/home/home.component'; +import { HomeComponent } from './components/home/home.component'; import { CBAWizardComponent } from './components/cbawizard/cbawizard.component'; import { MatToolbarModule,MatIconModule, MatButtonModule, MatSidenavModule, MatListModule, MatGridListModule, MatCardModule, MatMenuModule, MatTableModule, MatPaginatorModule, MatSortModule, MatInputModule, MatSelectModule, MatRadioModule, MatFormFieldModule, MatStepperModule} from '@angular/material'; import { RouterModule } from "@angular/router"; @NgModule({ declarations: [ - // HomeComponent, + HomeComponent, CBAWizardComponent ], exports: [ - // HomeComponent, + HomeComponent, CBAWizardComponent ], imports: [ -- cgit 1.2.3-korg