Catalog alignment
[sdc.git] / catalog-ui / src / app / ng2 / pages / service-consumption-editor / service-consumption-editor.module.ts
1 import { CommonModule } from '@angular/common';
2 import { NgModule } from '@angular/core';
3 import { FormsModule } from '@angular/forms';
4 import { PropertyTableModule } from 'app/ng2/components/logic/properties-table/property-table.module';
5 import { FormElementsModule } from 'app/ng2/components/ui/form-components/form-elements.module';
6 import { UiElementsModule } from 'app/ng2/components/ui/ui-elements.module';
7 import { TranslateModule } from 'app/ng2/shared/translator/translate.module';
8 import { ServiceConsumptionCreatorComponent } from './service-consumption-editor.component';
9
10 @NgModule({
11     declarations: [
12         ServiceConsumptionCreatorComponent
13     ],
14     imports: [CommonModule,
15         FormsModule,
16         FormElementsModule,
17         UiElementsModule,
18         PropertyTableModule,
19         TranslateModule
20     ],
21     exports: [],
22     entryComponents: [
23         ServiceConsumptionCreatorComponent
24     ],
25     providers: []
26 })
27 export class ServiceConsumptionCreatorModule {
28 }