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

@@ -2,6 +2,7 @@ import { NgModule } from '@angular/core';
import { CoreModule } from './core/core.module';
import { HomeModule } from './home/home.module';
import { ItemPageModule } from './item-page/item-page.module';
import { SharedModule } from './shared/shared.module';
@@ -10,15 +11,17 @@ import { AppComponent } from './app.component';
import { HeaderComponent } from './header/header.component';
import { PageNotFoundComponent } from './pagenotfound/pagenotfound.component';
@NgModule({
declarations: [
AppComponent,
HeaderComponent,
PageNotFoundComponent
PageNotFoundComponent,
],
imports: [
SharedModule,
HomeModule,
ItemPageModule,
CoreModule.forRoot(),
AppRoutingModule,
],