2017-12-19 13:53:46 +01:00
|
|
|
import { NgModule} from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
import {SearchResult} from '../../utils/entities/searchResult';
|
|
|
|
import {TabResultComponent} from './tabResult.component';
|
|
|
|
import {RouterModule} from '@angular/router';
|
2019-05-29 14:24:43 +02:00
|
|
|
import {ShowAuthorsModule} from "../../utils/authors/showAuthors.module";
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule, FormsModule,
|
2019-05-29 14:24:43 +02:00
|
|
|
RouterModule, ShowAuthorsModule
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
TabResultComponent,
|
|
|
|
],
|
|
|
|
providers:[
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
TabResultComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class TabResultModule { }
|