From a51bad1accfade25916db0dadaeb879a182cf19b Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 31 May 2018 11:35:01 +0200 Subject: Add 404 page --- .../app/+page-not-found/page-not-found.module.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 client/src/app/+page-not-found/page-not-found.module.ts (limited to 'client/src/app/+page-not-found/page-not-found.module.ts') diff --git a/client/src/app/+page-not-found/page-not-found.module.ts b/client/src/app/+page-not-found/page-not-found.module.ts new file mode 100644 index 000000000..bc29d17c4 --- /dev/null +++ b/client/src/app/+page-not-found/page-not-found.module.ts @@ -0,0 +1,22 @@ +import { NgModule } from '@angular/core' +import { SharedModule } from '../shared' +import { PageNotFoundComponent } from '@app/+page-not-found/page-not-found.component' +import { PageNotFoundRoutingModule } from '@app/+page-not-found/page-not-found-routing.module' + +@NgModule({ + imports: [ + PageNotFoundRoutingModule, + SharedModule + ], + + declarations: [ + PageNotFoundComponent, + ], + + exports: [ + PageNotFoundComponent + ], + + providers: [] +}) +export class PageNotFoundModule { } -- cgit v1.2.3