38248: Added PageNotFound component

This commit is contained in:
Lotte Hofstede
2017-01-12 15:18:15 +01:00
parent 8cd58f8243
commit 82a379df3c
4 changed files with 16 additions and 5 deletions

View File

@@ -1,11 +1,13 @@
import { NgModule } from '@angular/core';
import { HomeModule } from './home/home.module';
import { SharedModule } from './shared/shared.module';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { HeaderComponent } from './header/header.component';
import { PageNotFoundComponent } from './pagenotfound/pagenotfound.component';
import { StoreModule } from "@ngrx/store";
import { RouterStoreModule } from "@ngrx/router-store";
@@ -17,7 +19,8 @@ import { effects } from './app.effects';
@NgModule({
declarations: [
AppComponent,
HeaderComponent
HeaderComponent,
PageNotFoundComponent
],
imports: [
SharedModule,