2025-02-21 14:09:35 -05:00
|
|
|
import { Routes } from '@angular/router';
|
2025-02-24 18:11:08 -05:00
|
|
|
import { HomeComponent } from './home/home.component';
|
2025-02-21 14:09:35 -05:00
|
|
|
|
2025-02-24 18:11:08 -05:00
|
|
|
export const routes: Routes = [
|
|
|
|
|
{ path: 'home', component: HomeComponent },
|
|
|
|
|
{ path: '', redirectTo: '/home', pathMatch: 'full' },
|
|
|
|
|
];
|