Project

General

Profile

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

    
5
import {CommunityErrorPageComponent}   from './communityErrorPage.component';
6

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