openaire-library/error/error.module.ts

18 lines
482 B
TypeScript
Raw Normal View History

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