2019-05-29 14:24:43 +02:00
|
|
|
import { NgModule} from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
|
|
|
|
import {ShowAuthorsComponent} from './showAuthors.component';
|
2020-02-07 14:05:07 +01:00
|
|
|
import {HighlightModule} from "../../searchPages/searchUtils/highlight/highlight.module";
|
2019-05-29 14:24:43 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2020-02-07 14:05:07 +01:00
|
|
|
CommonModule, FormsModule, RouterModule, HighlightModule
|
2019-05-29 14:24:43 +02:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
ShowAuthorsComponent
|
|
|
|
],
|
|
|
|
providers:[
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
ShowAuthorsComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class ShowAuthorsModule { }
|