Added some shared components

This commit is contained in:
Erik Tiekstra
2021-03-16 16:09:02 +01:00
committed by Erik Tiekstra
parent 03ba526798
commit dfa1f1881d
21 changed files with 194 additions and 14 deletions

View File

@@ -3,6 +3,7 @@ import { DigiNgTypographyBaseModule } from '@af/digi-ng/_typography/typography-b
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({
@@ -12,6 +13,7 @@ import { PageNotFoundComponent } from './page-not-found.component';
RouterModule.forChild([{ path: '', component: PageNotFoundComponent }]),
DigiNgTypographyBaseModule,
DigiNgIconArrowLeftModule,
HorizontalCenterModule,
],
})
export class PageNotFoundModule {}