Project

General

Profile

1
import {NgModule} from "@angular/core";
2
import {HomeComponent} from "./home.component";
3
import {HomeRoutingModule} from "./home-routing.module";
4
import {FreeGuard} from "../openaireLibrary/login/freeGuard.guard";
5
import {PreviousRouteRecorder} from "../openaireLibrary/utils/piwik/previousRouteRecorder.guard";
6
import {CommonModule} from "@angular/common";
7
import {RouterModule} from "@angular/router";
8
import {InputModule} from "../library/sharedComponents/input/input.module";
9
import {LoadingModule} from "../library/sharedComponents/loading/loading.module";
10

    
11
@NgModule({
12
  declarations: [HomeComponent],
13
  imports: [
14
    HomeRoutingModule,
15
    CommonModule,
16
    RouterModule,
17
    InputModule,
18
    LoadingModule
19
  ],
20
  providers: [
21
    FreeGuard, PreviousRouteRecorder,
22
  ],
23
  exports: [HomeComponent]
24
})
25
export class HomeModule {
26

    
27
}
(4-4/4)