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

                                                                           


            


                             


                 
                         








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