import { DigiNgIconArrowLeftModule } from '@af/digi-ng/_icon/icon-arrow-left'; import { DigiNgTypographyBaseModule } from '@af/digi-ng/_typography/typography-base'; import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import { HorizontalCenterModule } from '@dafa-shared/components/horizontal-center/horizontal-center.module'; import { PageNotFoundComponent } from './page-not-found.component'; @NgModule({ declarations: [PageNotFoundComponent], imports: [ CommonModule, RouterModule.forChild([{ path: '', component: PageNotFoundComponent }]), DigiNgTypographyBaseModule, DigiNgIconArrowLeftModule, HorizontalCenterModule, ], }) export class PageNotFoundModule {}