From 0d7bed55779ae92634ca34b611d965b94021254c Mon Sep 17 00:00:00 2001 From: Chris Veilleux Date: Fri, 29 Mar 2019 12:37:36 -0500 Subject: [PATCH] removed local page not found component in favor of the library --- .../page-not-found/page-not-found.component.html | 1 - .../page-not-found/page-not-found.component.scss | 0 .../page-not-found/page-not-found.component.ts | 15 --------------- 3 files changed, 16 deletions(-) delete mode 100644 projects/market/src/app/page-not-found/page-not-found.component.html delete mode 100644 projects/market/src/app/page-not-found/page-not-found.component.scss delete mode 100644 projects/market/src/app/page-not-found/page-not-found.component.ts diff --git a/projects/market/src/app/page-not-found/page-not-found.component.html b/projects/market/src/app/page-not-found/page-not-found.component.html deleted file mode 100644 index 6c581c4..0000000 --- a/projects/market/src/app/page-not-found/page-not-found.component.html +++ /dev/null @@ -1 +0,0 @@ -

Page not found

\ No newline at end of file diff --git a/projects/market/src/app/page-not-found/page-not-found.component.scss b/projects/market/src/app/page-not-found/page-not-found.component.scss deleted file mode 100644 index e69de29..0000000 diff --git a/projects/market/src/app/page-not-found/page-not-found.component.ts b/projects/market/src/app/page-not-found/page-not-found.component.ts deleted file mode 100644 index e51c647..0000000 --- a/projects/market/src/app/page-not-found/page-not-found.component.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -@Component({ - selector: 'market-page-not-found', - templateUrl: './page-not-found.component.html', - styleUrls: ['./page-not-found.component.scss'] -}) -export class PageNotFoundComponent implements OnInit { - - constructor() { } - - ngOnInit() { - } - -}