update app routes

This commit is contained in:
2025-02-24 18:11:08 -05:00
parent 9484c73c0c
commit c47e6141fb

View File

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