Project

General

Profile

1 61381 k.triantaf
import {NgModule} from "@angular/core";
2
import {LandingHeaderComponent} from "./landing-header.component";
3
import {CommonModule} from "@angular/common";
4
import {LandingModule} from "../landing.module";
5
import {ShowAuthorsModule} from "../../../utils/authors/showAuthors.module";
6
7
@NgModule({
8
  imports: [CommonModule, LandingModule, ShowAuthorsModule],
9
  declarations: [LandingHeaderComponent],
10
  exports: [LandingHeaderComponent]
11
})
12
export class LandingHeaderModule {}