Files
JavaScriptServices/templates/Angular2Spa/ClientApp/routes.ts
2016-09-19 09:12:03 +01:00

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' }
];