blob: cb5f914cdda105b1b5ad9225edf73d73ad18c1a3 [file] [log] [blame]
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { DynamicInputsComponent } from '../components/dynamic-inputs/dynamic-inputs.component';
import { AngularMultiSelectModule } from "angular2-multiselect-dropdown";
import { DynamicInputLabelPipe } from '../shared/pipes/dynamicInputLabel/dynamic-input-label.pipe';
@NgModule({
imports: [
CommonModule, FormsModule, ReactiveFormsModule, AngularMultiSelectModule
],
providers: [],
declarations: [ DynamicInputLabelPipe, DynamicInputsComponent ],
entryComponents: [],
exports: [ DynamicInputLabelPipe, DynamicInputsComponent ]
})
export class InputsModule { }