import { CommonModule } from '@angular/common'; import { NgModule, ModuleWithProviders } from '@angular/core'; import { Home } from './home/home'; import { PageNotFound } from './page-not-found/page-not-found'; @NgModule({ declarations:[ Home, PageNotFound ], imports: [ CommonModule ], exports: [ Home, PageNotFound ], }) export class UiViewsModule {}