Files
rc-portfolio/src/app/app.routes.ts
2025-02-24 18:11:08 -05:00

8 lines
235 B
TypeScript

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