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

    
18

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