10 lines
296 B
TypeScript
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' },
|
|
];
|