summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/ui/modal/add-elements/add-elements.module.ts
blob: a1c34f5686f9f1663dcbca4f9da9d89d5cd21785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
 * Created by ob0695 on 11.04.2018.
 */
import {NgModule} from "@angular/core";
import {SdcUiComponentsModule} from "sdc-ui/lib/angular/index";
import {AddElementsComponent} from "./add-elements.component";
import {CommonModule} from "@angular/common";

/**
 * Created by ob0695 on 9.04.2018.
 */
@NgModule({
    declarations: [
        AddElementsComponent
    ],

    imports: [
        CommonModule,
        SdcUiComponentsModule
    ],

    entryComponents: [
        AddElementsComponent
    ],
    exports: [],
    providers: []
})
export class AddElementsModule {

}