aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+page-not-found/page-not-found.module.ts
blob: bc29d17c47967f274dabd865ecc0c8a5ccf9c8f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 { }