blob: cb5f914cdda105b1b5ad9225edf73d73ad18c1a3 [file] [log] [blame]
Sonsino, Ofir (os0695)ff76b5e2018-07-10 15:57:37 +03001import { NgModule } from '@angular/core';
2import { CommonModule } from '@angular/common';
3import { FormsModule, ReactiveFormsModule } from '@angular/forms';
4import { DynamicInputsComponent } from '../components/dynamic-inputs/dynamic-inputs.component';
5import { AngularMultiSelectModule } from "angular2-multiselect-dropdown";
6import { DynamicInputLabelPipe } from '../shared/pipes/dynamicInputLabel/dynamic-input-label.pipe';
7
8
9@NgModule({
10 imports: [
11 CommonModule, FormsModule, ReactiveFormsModule, AngularMultiSelectModule
12 ],
13 providers: [],
14 declarations: [ DynamicInputLabelPipe, DynamicInputsComponent ],
15 entryComponents: [],
16 exports: [ DynamicInputLabelPipe, DynamicInputsComponent ]
17
18})
19
20export class InputsModule { }