Phase D: Configure routing with root redirect to /map

This commit is contained in:
2026-02-14 14:16:11 -05:00
parent 6e0d533538
commit 6d5846cd85
4 changed files with 17 additions and 1 deletions

View File

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