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

    
8
//import {ShowAuthorsComponent} from './showAuthors.component';
9
import {ShowIdentifiersComponent} from './showIdentifiers.component';
10
import {ShowSubjectsComponent} from './showSubjects.component';
11
import {FundedByComponent} from './fundedBy.component';
12
import {PublishedInComponent} from './publishedIn.component';
13
import {AvailableOnComponent} from './availableOn.component';
14
import {TabTableComponent} from './tabTable.component';
15
import {ShowPublisherComponent} from "./showPublisher.component";
16
import {ShowPublisherModule} from "./showPublisher.module";
17
import {RelatedToComponent} from "./relatedTo.component";
18

    
19

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