libs/pfe-connector/src/lib/runtime-utils/pfe-dynamic-page/pfe-dynamic-page.module.ts
No results matching.
import { AclModule } from '@allianz/taly-acl/angular';
import { InterpolateFromStorePipe } from '@allianz/taly-core';
import { BuildingBlockDebuggerModule, DynamicFormDebugger } from '@allianz/taly-core/devtools';
import { NotificationsGroupComponent, TalySidebarMarkerModule } from '@allianz/taly-core/frame';
import { ConfiguredSectionDirective, TalyInternalHeadlineComponent } from '@allianz/taly-core/ui';
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { PfeDynamicPageComponent } from './pfe-dynamic-page.component';
import { DynamicFormBuildingBlockModule } from '@allianz/taly-core/building-blocks';
@NgModule({
declarations: [PfeDynamicPageComponent],
imports: [
ConfiguredSectionDirective,
CommonModule,
DynamicFormBuildingBlockModule,
NotificationsGroupComponent,
BuildingBlockDebuggerModule,
DynamicFormDebugger,
AclModule,
TalyInternalHeadlineComponent,
InterpolateFromStorePipe,
TalySidebarMarkerModule,
RouterModule.forChild([
{
path: '',
component: PfeDynamicPageComponent
}
])
]
})
export class PfeDynamicPageModule {}