8 lines
218 B
TypeScript
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 }
|
|
];
|