40416: started on simple item view page

This commit is contained in:
Lotte Hofstede
2017-03-28 17:17:24 +02:00
parent 52c0a82ce7
commit 66e421a1eb
24 changed files with 358 additions and 56 deletions

View File

@@ -0,0 +1,14 @@
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { ItemPageComponent } from './item-page.component';
@NgModule({
imports: [
RouterModule.forChild([
{ path: 'item/:id', pathMatch: 'full', component: ItemPageComponent },
])
]
})
export class ItemPageRoutingModule {
}