UNPKG

cd-force

Version:

Form creation goodness.

29 lines (27 loc) 797 B
import { MapToKeysPipe } from './map-to-keys.pipe'; import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { DynamicFormComponent } from './dynamic-form/dynamic-form.component'; import { FormControlComponent } from './form-control/form-control.component'; import { ModelDrivenComponent } from './model-driven/model-driven.component'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; @NgModule({ imports: [ CommonModule, FormsModule, ReactiveFormsModule ], declarations: [ DynamicFormComponent, FormControlComponent, ModelDrivenComponent, MapToKeysPipe ], exports: [ DynamicFormComponent, FormControlComponent, ModelDrivenComponent, MapToKeysPipe ] }) export class ForceModule { }