Project

General

Profile

1
/* This module contains all common components for all landing pages */
2

    
3
import { NgModule}            from '@angular/core';
4
import { CommonModule }        from '@angular/common';
5
import { FormsModule }         from '@angular/forms';
6
import { RouterModule }       from '@angular/router';
7

    
8
import { ProjectsServiceModule} from '../services/projectsService.module';
9
import { TabResultModule } from '../searchPages/searchUtils/tabResult.module';
10
import { SearchingProjectsTabComponent} from './searchingProjectsInTab.component';
11

    
12
import {PagingModule } from '../utils/paging.module';
13

    
14

    
15
@NgModule({
16
  imports: [
17
      RouterModule, CommonModule, FormsModule,
18
      ProjectsServiceModule, TabResultModule, PagingModule
19
   ],
20
  declarations: [
21
     SearchingProjectsTabComponent
22
  ],
23
  providers:[
24
   ],
25
  exports: [
26

    
27
    SearchingProjectsTabComponent
28
    ]
29
})
30
export class SearchingProjectsTabModule { }
(7-7/13)