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

    
7
@NgModule({
8
  imports: [
9
    CommonModule, FormsModule
10
  ],
11
  providers: [],
12
  declarations: [
13
    ErrorPageComponent
14
  ],
15
  exports: [
16
    ErrorPageComponent
17
  ]
18
})
19
export class ErrorModule { }
(1-1/3)