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

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