Project

General

Profile

1 45673 argiro.kok
/* This module contains all common components for Publication & Daasets Landing Pages */
2 45620 argiro.kok
import { NgModule}            from '@angular/core';
3
import { CommonModule }        from '@angular/common';
4
import { FormsModule }         from '@angular/forms';
5 45786 argiro.kok
import { RouterModule } from '@angular/router';
6 48573 konstantin
import {PagingModule} from '../utils/paging.module';
7 45620 argiro.kok
8
import {ShowAuthorsComponent} from './showAuthors.component';
9
import {ShowIdentifiersComponent} from './showIdentifiers.component';
10
import {ShowSubjectsComponent} from './showSubjects.component';
11 46094 konstantin
import {TabTableComponent} from './tabTable.component';
12 45620 argiro.kok
13
@NgModule({
14
  imports: [
15 48573 konstantin
    CommonModule, FormsModule, RouterModule, PagingModule
16 45620 argiro.kok
  ],
17
  declarations: [
18 46094 konstantin
   ShowAuthorsComponent,ShowIdentifiersComponent,ShowSubjectsComponent, TabTableComponent
19 45620 argiro.kok
  ],
20
  providers:[
21
   ],
22
  exports: [
23 46094 konstantin
     ShowAuthorsComponent,ShowIdentifiersComponent,ShowSubjectsComponent, TabTableComponent
24 45620 argiro.kok
    ]
25
})
26
export class ResultLandingModule { }