Project

General

Profile

1 50169 argiro.kok
import { NgModule}            from '@angular/core';
2
import { CommonModule }        from '@angular/common';
3
import { FormsModule }         from '@angular/forms';
4
5
 import {CiteThisComponent} from './citeThis.component';
6
7
@NgModule({
8
  imports: [
9
10
    CommonModule, FormsModule
11
   ],
12
  declarations: [
13
     CiteThisComponent
14
  ],
15
  providers:[
16
17
   ],
18
  exports: [
19
20
    CiteThisComponent
21
    ]
22
})
23
export class CiteThisModule { }