import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { NotFoundRoutingModule } from './not-found-routing.module'; import { NotFoundComponent } from './not-found.component'; @NgModule({ imports: [ CommonModule, NotFoundRoutingModule, NotFoundComponent ] }) export class NotFoundModule { }