Project

General

Profile

1
import {NgModule} from '@angular/core';
2
import {FreeGuard} from '../../login/freeGuard.guard';
3
import {IsRouteEnabled} from "../../error/isRouteEnabled.guard";
4
import {SharedModule} from "../../shared/shared.module";
5
import {LandingModule} from '../landing-utils/landing.module';
6
import {ResultLandingModule} from '../resultLanding.module';
7
import {OrpComponent} from './orp.component';
8

    
9
@NgModule({
10
  imports: [
11
    SharedModule, LandingModule,  ResultLandingModule
12
  ],
13
  declarations: [
14
    OrpComponent
15
  ],
16
  providers: [
17
    FreeGuard, IsRouteEnabled
18
  ],
19
  exports: [
20
    OrpComponent
21
  ]
22
})
23

    
24
export class OrpModule {
25
}
(3-3/4)