libs/core/dynamic-form/src/form/form.module.ts
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { DfFormfieldModule } from '../formfield/formfield.module';
import { DfFormComponent } from './form.component';
@NgModule({
imports: [CommonModule, FormsModule, ReactiveFormsModule, DfFormfieldModule],
declarations: [DfFormComponent],
exports: [DfFormComponent]
})
export class DfFormModule {}