2017-12-19 13:53:46 +01:00
|
|
|
import { NgModule} from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
2018-10-25 11:33:56 +02:00
|
|
|
import { RouterModule } from '@angular/router';
|
2017-12-19 13:53:46 +01:00
|
|
|
import {ClaimServiceModule} from '../service/claimsService.module';
|
|
|
|
import {DisplayClaimsComponent} from './displayClaims.component';
|
|
|
|
import {LoadingModalModule} from '../../../utils/modal/loadingModal.module';
|
|
|
|
import {AlertModalModule} from '../../../utils/modal/alertModal.module';
|
|
|
|
import {ClaimEntityFormatterModule} from '../entityFormatter/claimEntityFormatter.module';
|
|
|
|
import {PagingModule } from '../../../utils/paging.module';
|
|
|
|
import {HelperModule} from '../../../utils/helper/helper.module';
|
2018-11-14 11:38:53 +01:00
|
|
|
import {Schema2jsonldModule} from '../../../sharedComponents/schema2jsonld/schema2jsonld.module';
|
|
|
|
import { SEOServiceModule } from '../../../sharedComponents/SEO/SEOService.module';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2018-10-25 11:33:56 +02:00
|
|
|
CommonModule, FormsModule, RouterModule, ClaimServiceModule, LoadingModalModule, AlertModalModule,
|
2018-11-14 11:38:53 +01:00
|
|
|
ClaimEntityFormatterModule, PagingModule, HelperModule, Schema2jsonldModule, SEOServiceModule
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
DisplayClaimsComponent
|
|
|
|
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
DisplayClaimsComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class DisplayClaimsModule { }
|