2017-12-19 13:53:46 +01:00
|
|
|
/* This module contains all common components for Publication & Daasets Landing Pages */
|
|
|
|
import { NgModule} from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import {PagingModule} from '../../utils/paging.module';
|
|
|
|
import {ShowIdentifiersComponent} from './showIdentifiers.component';
|
|
|
|
import {ShowSubjectsComponent} from './showSubjects.component';
|
|
|
|
import {FundedByComponent} from './fundedBy.component';
|
|
|
|
import {AvailableOnComponent} from './availableOn.component';
|
|
|
|
import {TabTableComponent} from './tabTable.component';
|
2019-05-22 17:04:10 +02:00
|
|
|
import {ShowPublisherComponent} from "./showPublisher.component";
|
2019-05-27 12:36:09 +02:00
|
|
|
import {ShowPublisherModule} from "./showPublisher.module";
|
2019-10-02 16:20:34 +02:00
|
|
|
import {RelatedToComponent} from "./relatedTo.component";
|
2019-05-27 12:36:09 +02:00
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2019-05-27 12:36:09 +02:00
|
|
|
CommonModule, FormsModule, RouterModule, PagingModule, ShowPublisherModule
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
2019-05-29 14:24:43 +02:00
|
|
|
ShowIdentifiersComponent,ShowSubjectsComponent,
|
2021-04-20 17:18:15 +02:00
|
|
|
FundedByComponent,AvailableOnComponent,TabTableComponent,
|
2019-10-02 16:20:34 +02:00
|
|
|
RelatedToComponent
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
|
|
|
providers:[
|
|
|
|
],
|
|
|
|
exports: [
|
2019-05-29 14:24:43 +02:00
|
|
|
ShowIdentifiersComponent, ShowSubjectsComponent,
|
2021-04-20 17:18:15 +02:00
|
|
|
FundedByComponent,AvailableOnComponent, TabTableComponent, ShowPublisherComponent,
|
2019-10-02 16:20:34 +02:00
|
|
|
RelatedToComponent
|
2017-12-19 13:53:46 +01:00
|
|
|
]
|
|
|
|
})
|
2019-09-05 10:49:33 +02:00
|
|
|
export class ResultLandingUtilsModule { }
|