UNPKG

@nativescript/template-hello-world-ng

Version:
10 lines (8 loc) 364 B
import { Routes } from '@angular/router'; import { ItemsComponent } from './item/items.component'; import { ItemDetailComponent } from './item/item-detail.component'; export const routes: Routes = [ { path: '', redirectTo: '/items', pathMatch: 'full' }, { path: 'items', component: ItemsComponent }, { path: 'item/:id', component: ItemDetailComponent }, ];