Files
d280-javascript/src/app/app.routes.ts

8 lines
218 B
TypeScript

import { Routes } from '@angular/router';
import { MapComponent } from './map/map';
export const routes: Routes = [
{ path: '', redirectTo: '/map', pathMatch: 'full' },
{ path: 'map', component: MapComponent }
];