aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/shared/input/wfm-text-input.module.ts
blob: 8dbfd47f08bd21ef3f6d4d1571847cd62b594510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 {

}