diff options
author | Dan Timoney <dtimoney@att.com> | 2019-01-07 17:31:01 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-07 17:31:01 +0000 |
commit | b114208b9dfba7a42dfb009106143c7b506884a4 (patch) | |
tree | cdae12dec9761c469137c4343ad328a08fc8d1d2 /cds-ui/client/src/app/common | |
parent | 255abc6d88ec969e7fd6d03185c77e366edbf907 (diff) | |
parent | 5f6175d79c9a5780608a5805ad563669e96a8943 (diff) |
Merge "App routing"
Diffstat (limited to 'cds-ui/client/src/app/common')
-rw-r--r-- | cds-ui/client/src/app/common/shared/shared.module.ts | 6 |
1 files changed, 3 insertions, 3 deletions
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: [ |