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

    
7
import {ShowAuthorsComponent} from './showAuthors.component';
8
import {ShowIdentifiersComponent} from './showIdentifiers.component';
9
import {ShowSubjectsComponent} from './showSubjects.component';
10

    
11

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