20 lines
488 B
TypeScript
20 lines
488 B
TypeScript
import {NgModule} from '@angular/core';
|
|
import {CommonModule} from '@angular/common';
|
|
import {FormsModule} from '@angular/forms';
|
|
|
|
import {CommunityErrorPageComponent} from './communityErrorPage.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule, FormsModule
|
|
],
|
|
providers: [],
|
|
declarations: [
|
|
CommunityErrorPageComponent
|
|
],
|
|
exports: [
|
|
CommunityErrorPageComponent
|
|
]
|
|
})
|
|
export class CommunityErrorModule { }
|