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';
import { AclModule } from '@allianz/taly-acl/angular';
@NgModule({
imports: [CommonModule, FormsModule, ReactiveFormsModule, DfFormfieldModule, AclModule],
declarations: [DfFormComponent],
exports: [DfFormComponent]
})
export class DfFormModule {}