openaire-library/landingPages/landing-utils/landing-header/landing-header.module.ts

12 lines
469 B
TypeScript

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";
@NgModule({
imports: [CommonModule, LandingModule, ShowAuthorsModule],
declarations: [LandingHeaderComponent],
exports: [LandingHeaderComponent]
})
export class LandingHeaderModule {}