From 252cd40637b9a6c46bdcc799f1db2e5571f64aa6 Mon Sep 17 00:00:00 2001 From: ztimson Date: Tue, 9 Jul 2019 15:58:07 -0400 Subject: [PATCH] Removed old component --- src/app/app.routing.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts index 9c71c44..a1f8d79 100644 --- a/src/app/app.routing.ts +++ b/src/app/app.routing.ts @@ -1,12 +1,10 @@ import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; -import {NotFoundComponent} from "./404/404.component"; import {MapComponent} from "./map/map.component"; import {HomeComponent} from "./home/home.component"; const routes: Routes = [ {path: '', pathMatch: 'full', component: HomeComponent}, - {path: '404', component: NotFoundComponent}, {path: '**', component: MapComponent} ];