aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+page-not-found/page-not-found.module.ts
blob: ffc1f777db3f8d704394493a7ffab3fd3dd4de4c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                                              
                         








                                   
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 { }