2018-04-11 16:06:36 +02:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2018-04-11 16:06:36 +02:00
|
|
|
import {ErrorPageComponent} from './errorPage.component';
|
2019-11-02 02:08:28 +01:00
|
|
|
import {RouterModule} from "@angular/router";
|
2019-11-07 10:51:09 +01:00
|
|
|
import { SEOServiceModule } from '../sharedComponents/SEO/SEOService.module';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2019-11-07 10:51:09 +01:00
|
|
|
CommonModule, FormsModule, RouterModule, SEOServiceModule
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
2018-04-11 16:06:36 +02:00
|
|
|
providers: [],
|
2017-12-19 13:53:46 +01:00
|
|
|
declarations: [
|
|
|
|
ErrorPageComponent
|
2018-04-11 16:06:36 +02:00
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
ErrorPageComponent
|
|
|
|
]
|
2017-12-19 13:53:46 +01:00
|
|
|
})
|
|
|
|
export class ErrorModule { }
|