import { NormalizeUrlModule } from '@allianz/taly-common';
import { TalyInternalHeadlineComponent } from '@allianz/taly-core/internal-headline';
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { NxCopytextModule } from '@aposin/ng-aquila/copytext';
import { NxIconModule } from '@aposin/ng-aquila/icon';
import { NxLinkModule } from '@aposin/ng-aquila/link';
import { NxSmallStageModule } from '@aposin/ng-aquila/small-stage';
import { StageViewComponent } from './stage-view.component';
import { StageComponent } from './stage.component';
import { InterpolateFromStorePipe } from '@allianz/taly-core';
@NgModule({
declarations: [StageComponent, StageViewComponent],
exports: [StageComponent],
imports: [
NxSmallStageModule,
CommonModule,
NormalizeUrlModule,
NxIconModule,
NxLinkModule,
NxCopytextModule,
TalyInternalHeadlineComponent,
InterpolateFromStorePipe
]
})
export class StageModule {}