26 lines
599 B
TypeScript
26 lines
599 B
TypeScript
import { NgModule} from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import {CiteThisComponent} from './citeThis.component';
|
|
import {MatSelectModule} from "@angular/material";
|
|
import {ModalSelectModule} from "../../../utils/modal-select/modal-select.module";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
|
|
CommonModule, FormsModule, MatSelectModule, ModalSelectModule
|
|
],
|
|
declarations: [
|
|
CiteThisComponent
|
|
],
|
|
providers:[
|
|
|
|
],
|
|
exports: [
|
|
|
|
CiteThisComponent
|
|
]
|
|
})
|
|
export class CiteThisModule { }
|