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 { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { RulesModule } from '@ghostfolio/client/components/rules/rules.module'; |
|||
import { GfPremiumIndicatorModule } from '@ghostfolio/ui/premium-indicator'; |
|||
|
|||
import { ReportPageRoutingModule } from './report-page-routing.module'; |
|||
import { ReportPageComponent } from './report-page.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [ReportPageComponent], |
|||
imports: [CommonModule, ReportPageRoutingModule, RulesModule], |
|||
imports: [ |
|||
CommonModule, |
|||
GfPremiumIndicatorModule, |
|||
ReportPageRoutingModule, |
|||
RulesModule |
|||
], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class ReportPageModule {} |
|||
|
Loading…
Reference in new issue