mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 01:58:29 +00:00
12 lines
366 B
TypeScript
12 lines
366 B
TypeScript
import { Routes } from '@angular/router';
|
|
|
|
import { Home, FetchData, Counter } from './components';
|
|
|
|
export const routes: Routes = [
|
|
{ path: '', redirectTo: 'home', pathMatch: 'full' },
|
|
{ path: 'home', component: Home },
|
|
{ path: 'counter', component: Counter },
|
|
{ path: 'fetch-data', component: FetchData },
|
|
{ path: '**', redirectTo: 'home' }
|
|
];
|