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 {TabTableComponent} from './tabTable.component';
12

    
13
@NgModule({
14
  imports: [
15
    CommonModule, FormsModule, RouterModule, PagingModule
16
  ],
17
  declarations: [
18
   ShowAuthorsComponent,ShowIdentifiersComponent,ShowSubjectsComponent, TabTableComponent
19
  ],
20
  providers:[
21
   ],
22
  exports: [
23
     ShowAuthorsComponent,ShowIdentifiersComponent,ShowSubjectsComponent, TabTableComponent
24
    ]
25
})
26
export class ResultLandingModule { }
(5-5/13)