mirror of https://github.com/ghostfolio/ghostfolio
Thomas Kaul
2 years ago
committed by
GitHub
10 changed files with 84 additions and 52 deletions
@ -1,13 +1,19 @@ |
|||||
import { CommonModule } from '@angular/common'; |
import { CommonModule } from '@angular/common'; |
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
||||
import { RulesModule } from '@ghostfolio/client/components/rules/rules.module'; |
import { RulesModule } from '@ghostfolio/client/components/rules/rules.module'; |
||||
|
import { GfPremiumIndicatorModule } from '@ghostfolio/ui/premium-indicator'; |
||||
|
|
||||
import { ReportPageRoutingModule } from './report-page-routing.module'; |
import { ReportPageRoutingModule } from './report-page-routing.module'; |
||||
import { ReportPageComponent } from './report-page.component'; |
import { ReportPageComponent } from './report-page.component'; |
||||
|
|
||||
@NgModule({ |
@NgModule({ |
||||
declarations: [ReportPageComponent], |
declarations: [ReportPageComponent], |
||||
imports: [CommonModule, ReportPageRoutingModule, RulesModule], |
imports: [ |
||||
|
CommonModule, |
||||
|
GfPremiumIndicatorModule, |
||||
|
ReportPageRoutingModule, |
||||
|
RulesModule |
||||
|
], |
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
||||
}) |
}) |
||||
export class ReportPageModule {} |
export class ReportPageModule {} |
||||
|
Loading…
Reference in new issue