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

    
7
import {TabPagingComponent} from './tabPaging.component';
8
import {ShowTitleComponent} from './showTitle.component';
9
import {AddThisComponent} from './addThis.component';
10

    
11
@NgModule({
12
  imports: [
13
    CommonModule, FormsModule
14
  ],
15
  declarations: [
16
      TabPagingComponent,  ShowTitleComponent, AddThisComponent
17
  ],
18
  providers:[
19
   ],
20
  exports: [
21
     TabPagingComponent, ShowTitleComponent, AddThisComponent
22
    ]
23
})
24
export class LandingModule { }
(2-2/13)