Project

General

Profile

1
/* This module contains all common components for Publication & Daasets Landing Pages */
2
import { NgModule}            from '@angular/core';
3
import { CommonModule }        from '@angular/common';
4
import { FormsModule }         from '@angular/forms';
5
import { RouterModule } from '@angular/router';
6
import {PagingModule} from '../../utils/paging.module';
7
import {ShowIdentifiersComponent} from './showIdentifiers.component';
8
import {ShowSubjectsComponent} from './showSubjects.component';
9
import {FundedByComponent} from './fundedBy.component';
10
import {AvailableOnComponent} from './availableOn.component';
11
import {TabTableComponent} from './tabTable.component';
12
import {ShowPublisherComponent} from "./showPublisher.component";
13
import {ShowPublisherModule} from "./showPublisher.module";
14
import {RelatedToComponent} from "./relatedTo.component";
15

    
16

    
17
@NgModule({
18
  imports: [
19
    CommonModule, FormsModule, RouterModule, PagingModule, ShowPublisherModule
20
  ],
21
  declarations: [
22
    ShowIdentifiersComponent,ShowSubjectsComponent,
23
    FundedByComponent,AvailableOnComponent,TabTableComponent,
24
    RelatedToComponent
25
  ],
26
  providers:[
27
  ],
28
  exports: [
29
    ShowIdentifiersComponent, ShowSubjectsComponent,
30
    FundedByComponent,AvailableOnComponent, TabTableComponent, ShowPublisherComponent,
31
    RelatedToComponent
32
  ]
33
})
34
export class ResultLandingUtilsModule { }
(9-9/16)