Project

General

Profile

1 61381 k.triantaf
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
import { MatSelectModule } from "@angular/material/select";
7
8
@NgModule({
9
  imports: [
10
11
    CommonModule, FormsModule, MatSelectModule
12
  ],
13
  declarations: [
14
     CiteThisComponent
15
  ],
16
  providers:[
17
18
   ],
19
  exports: [
20
21
    CiteThisComponent
22
    ]
23
})
24
export class CiteThisModule { }