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