2020-03-16 14:09:46 +01:00
|
|
|
import {NgModule} from "@angular/core";
|
|
|
|
import {LandingHeaderComponent} from "./landing-header.component";
|
|
|
|
import {CommonModule} from "@angular/common";
|
|
|
|
import {LandingModule} from "../landing.module";
|
|
|
|
import {ShowAuthorsModule} from "../../../utils/authors/showAuthors.module";
|
2023-01-09 17:35:28 +01:00
|
|
|
import {IconsModule} from "src/app/openaireLibrary/utils/icons/icons.module";
|
|
|
|
import {ShowPublisherModule} from "../showPublisher.module";
|
2023-02-13 14:51:15 +01:00
|
|
|
import {RouterModule} from "@angular/router";
|
2023-02-17 18:40:05 +01:00
|
|
|
import {ResultLandingUtilsModule} from "../resultLandingUtils.module";
|
2020-03-16 14:09:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2023-02-17 18:40:05 +01:00
|
|
|
imports: [CommonModule, LandingModule, ShowAuthorsModule, IconsModule, ShowPublisherModule, RouterModule, ResultLandingUtilsModule],
|
2020-03-16 14:09:46 +01:00
|
|
|
declarations: [LandingHeaderComponent],
|
|
|
|
exports: [LandingHeaderComponent]
|
|
|
|
})
|
2023-02-17 18:40:05 +01:00
|
|
|
export class LandingHeaderModule {}
|