Added paths and some standard code used in different projects

This commit is contained in:
Erik Tiekstra
2021-03-16 15:37:48 +01:00
committed by Erik Tiekstra
parent e2114e79b9
commit 03ba526798
72 changed files with 1109 additions and 282 deletions

View File

@@ -0,0 +1,17 @@
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 { PageNotFoundComponent } from './page-not-found.component';
@NgModule({
declarations: [PageNotFoundComponent],
imports: [
CommonModule,
RouterModule.forChild([{ path: '', component: PageNotFoundComponent }]),
DigiNgTypographyBaseModule,
DigiNgIconArrowLeftModule,
],
})
export class PageNotFoundModule {}