import { DfBaseModule, DfInfoIconComponent } from '@allianz/taly-core/dynamic-form';
import { NgModule } from '@angular/core';
import { ReactiveFormsModule } from '@angular/forms';
import { NxCopytextModule } from '@allianz/ng-aquila/copytext';
import { NxIconModule } from '@allianz/ng-aquila/icon';
import { NxMessageModule } from '@allianz/ng-aquila/message';
import { NxSwitcherModule } from '@allianz/ng-aquila/switcher';
import { DfSwitcherComponent } from './switcher.component';
import { NxFormfieldErrorDirective } from '@allianz/ng-aquila/formfield';
import { NxErrorComponent } from '@allianz/ng-aquila/base';
@NgModule({
declarations: [DfSwitcherComponent],
exports: [DfSwitcherComponent],
imports: [
ReactiveFormsModule,
NxCopytextModule,
NxMessageModule,
NxIconModule,
DfBaseModule,
DfInfoIconComponent,
NxSwitcherModule,
NxFormfieldErrorDirective,
NxErrorComponent
]
})
export class DfSwitcherModule {}