Files
byhaider-homepage-old/src/app/app.routes.ts
T

10 lines
296 B
TypeScript

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