aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/client-frankfurt/src/app/modules/feature-modules/packages/packages.module.ts
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2019-11-19 21:21:03 +0000
committerGerrit Code Review <gerrit@onap.org>2019-11-19 21:21:03 +0000
commitf0b747065e11ee5cc1be4bad2983a557af9c7969 (patch)
tree325f2b9c7adb2b082e30c1fee9cf10f8e09b596f /cds-ui/client-frankfurt/src/app/modules/feature-modules/packages/packages.module.ts
parent2783ded8664505cc0bbfd254fc2a96c5830b66a0 (diff)
parent32a1d4fac56ff29b0e50fa88bdf88047c51bc0be (diff)
Merge "add main module and hrml of designer component in new cds ui"
Diffstat (limited to 'cds-ui/client-frankfurt/src/app/modules/feature-modules/packages/packages.module.ts')
-rw-r--r--cds-ui/client-frankfurt/src/app/modules/feature-modules/packages/packages.module.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/cds-ui/client-frankfurt/src/app/modules/feature-modules/packages/packages.module.ts b/cds-ui/client-frankfurt/src/app/modules/feature-modules/packages/packages.module.ts
new file mode 100644
index 000000000..63b84ebb8
--- /dev/null
+++ b/cds-ui/client-frankfurt/src/app/modules/feature-modules/packages/packages.module.ts
@@ -0,0 +1,21 @@
+import {NgModule} from '@angular/core';
+import {CommonModule} from '@angular/common';
+import {PackagesRoutingModule} from './packages.routing.module';
+import {NgbPaginationModule} from '@ng-bootstrap/ng-bootstrap';
+import { DesignerComponent } from './designer/designer.component';
+import { SidebarModule } from 'ng-sidebar';
+
+
+@NgModule({
+ declarations: [DesignerComponent],
+ imports: [
+ CommonModule,
+ PackagesRoutingModule,
+ NgbPaginationModule,
+ SidebarModule.forRoot(),
+ ],
+ providers: [],
+ bootstrap: []
+})
+export class PackagesModule {
+}