summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/logic/select-requirement-or-capability/select-requirement-or-capability.module.ts
blob: cb12dea02ab65b8e75ddaf39aaeb5457e15d1c0d (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
import {NgModule} from "@angular/core";
import {SelectRequirementOrCapabilityComponent} from "./select-requirement-or-capability.component";
import {FormsModule} from "@angular/forms";
import {FormElementsModule} from "../../ui/form-components/form-elements.module";
import {CommonModule} from "@angular/common";
import {GlobalPipesModule} from "app/ng2/pipes/global-pipes.module";
import {PropertyTableModule} from "../properties-table/property-table.module";

@NgModule({
    declarations: [
        SelectRequirementOrCapabilityComponent
    ],
    imports: [
        CommonModule,
        FormsModule,
        FormElementsModule,
        GlobalPipesModule,
        PropertyTableModule],

    exports: [SelectRequirementOrCapabilityComponent],
    providers: []
})
export class SelectRequirementOrCapabilityModule {
}