aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/modules/inputs.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'vid-webpack-master/src/app/modules/inputs.module.ts')
-rw-r--r--vid-webpack-master/src/app/modules/inputs.module.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/vid-webpack-master/src/app/modules/inputs.module.ts b/vid-webpack-master/src/app/modules/inputs.module.ts
deleted file mode 100644
index cb5f914cd..000000000
--- a/vid-webpack-master/src/app/modules/inputs.module.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-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 { }