26 lines
557 B
TypeScript
26 lines
557 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/select";
|
|
import {InputModule} from "../../../sharedComponents/input/input.module";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
|
|
CommonModule, FormsModule, MatSelectModule, InputModule
|
|
],
|
|
declarations: [
|
|
CiteThisComponent
|
|
],
|
|
providers:[
|
|
|
|
],
|
|
exports: [
|
|
|
|
CiteThisComponent
|
|
]
|
|
})
|
|
export class CiteThisModule { }
|