aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+error-page/error-page.module.ts
blob: 34f026ea8b88c24960aa86b287d5e0163f6dd52c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { CommonModule } from '@angular/common'
import { NgModule } from '@angular/core'
import { SharedMainModule } from '@app/shared/shared-main'
import { ErrorPageRoutingModule } from './error-page-routing.module'
import { ErrorPageComponent } from './error-page.component'

@NgModule({
  imports: [
    CommonModule,
    SharedMainModule,

    ErrorPageRoutingModule
  ],

  declarations: [
    ErrorPageComponent
  ],

  exports: [
    ErrorPageComponent
  ],

  providers: []
})
export class ErrorPageModule { }