aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/shared/input/wfm-text-input.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/shared/input/wfm-text-input.module.ts')
-rw-r--r--sdc-workflow-designer-ui/src/app/shared/input/wfm-text-input.module.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/sdc-workflow-designer-ui/src/app/shared/input/wfm-text-input.module.ts b/sdc-workflow-designer-ui/src/app/shared/input/wfm-text-input.module.ts
new file mode 100644
index 00000000..8dbfd47f
--- /dev/null
+++ b/sdc-workflow-designer-ui/src/app/shared/input/wfm-text-input.module.ts
@@ -0,0 +1,15 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+import { TranslateModule } from '@ngx-translate/core';
+import { FormsModule } from '@angular/forms';
+import { WfmTextInputComponent } from './wfm-text-input.component';
+
+@NgModule({
+ imports: [TranslateModule, CommonModule, FormsModule],
+ declarations: [WfmTextInputComponent],
+ exports: [WfmTextInputComponent]
+})
+
+export class WfmInputModule {
+
+} \ No newline at end of file