openaire-library/connect/communityGuard/communityError.module.ts

18 lines
530 B
TypeScript

import { NgModule} from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import {CommunityErrorPageComponent } from './communityErrorPage.component';
import {MetaModule} from '../../sharedComponents/metaService.module';
@NgModule({
imports: [
CommonModule, FormsModule, MetaModule
],
providers:[],
declarations: [
CommunityErrorPageComponent
], exports:[CommunityErrorPageComponent]
})
export class CommunityErrorModule { }