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

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

    
10

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