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