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