Project

General

Profile

1
import { NgModule}            from '@angular/core';
2
import { CommonModule }        from '@angular/common';
3
import { FormsModule }         from '@angular/forms';
4

    
5
import { ErrorPageComponent } from './errorPage.component';
6
import { ErrorRoutingModule } from './error-routing.module';
7

    
8
@NgModule({
9
  imports: [
10
    CommonModule, FormsModule,
11
    ErrorRoutingModule
12

    
13
  ],
14
  declarations: [
15
ErrorPageComponent
16

    
17
]
18
})
19
export class ErrorModule { }
(2-2/3)