aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+page-not-found/page-not-found.module.ts
blob: bc29d17c47967f274dabd865ecc0c8a5ccf9c8f8 (plain) (tree)





















                                                                                              
import { NgModule } from '@angular/core'
import { SharedModule } from '../shared'
import { PageNotFoundComponent } from '@app/+page-not-found/page-not-found.component'
import { PageNotFoundRoutingModule } from '@app/+page-not-found/page-not-found-routing.module'

@NgModule({
  imports: [
    PageNotFoundRoutingModule,
    SharedModule
  ],

  declarations: [
    PageNotFoundComponent,
  ],

  exports: [
    PageNotFoundComponent
  ],

  providers: []
})
export class PageNotFoundModule { }