argos/dmp-frontend/src/common/forms/common-forms.module.ts

21 lines
477 B
TypeScript
Raw Normal View History

2019-01-18 18:03:45 +01:00
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { PendingChangesGuard } from '@common/forms/pending-form-changes/pending-form-changes-guard.service';
import { FormService } from './form-service';
2019-01-18 18:03:45 +01:00
@NgModule({
imports: [
FormsModule,
ReactiveFormsModule,
],
exports: [
FormsModule,
ReactiveFormsModule,
],
providers: [
FormService,
PendingChangesGuard
2019-01-18 18:03:45 +01:00
]
})
export class CommonFormsModule { }