Removed old component

This commit is contained in:
ztimson 2019-07-09 15:58:07 -04:00
parent 358266e48f
commit 252cd40637

View File

@ -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}
];