2020-08-12 16:25:43 +02:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2020-08-12 16:25:43 +02:00
|
|
|
import {CiteThisComponent} from './citeThis.component';
|
2021-07-14 13:19:57 +02:00
|
|
|
import { MatSelectModule } from "@angular/material/select";
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2020-05-20 14:56:21 +02:00
|
|
|
|
2020-08-12 16:25:43 +02:00
|
|
|
CommonModule, FormsModule, MatSelectModule
|
2020-05-20 14:56:21 +02:00
|
|
|
],
|
2017-12-19 13:53:46 +01:00
|
|
|
declarations: [
|
|
|
|
CiteThisComponent
|
|
|
|
],
|
|
|
|
providers:[
|
|
|
|
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
|
|
|
|
CiteThisComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class CiteThisModule { }
|