import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { DfFormfieldModule } from '../formfield/formfield.module';
import { InternalDfFormComponent } from './form.component';
import { AclModule } from '@allianz/taly-acl/angular';
@NgModule({
imports: [CommonModule, FormsModule, ReactiveFormsModule, DfFormfieldModule, AclModule],
declarations: [InternalDfFormComponent],
exports: [InternalDfFormComponent]
})
export class DfFormModule {}