blob: 2e09ab29927cc5071686403d789e6c130e77641a (
plain) (
tree)
|
|
import { CommonModule } from '@angular/common'
import { NgModule } from '@angular/core'
import { PageNotFoundRoutingModule } from './page-not-found-routing.module'
import { PageNotFoundComponent } from './page-not-found.component'
@NgModule({
imports: [
CommonModule,
PageNotFoundRoutingModule
],
declarations: [
PageNotFoundComponent
],
exports: [
PageNotFoundComponent
],
providers: []
})
export class PageNotFoundModule { }
|