mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.3 KiB
31 lines
1.3 KiB
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
import { MatCardModule } from '@angular/material/card';
|
|
import { GfBenchmarkComparatorModule } from '@ghostfolio/client/components/benchmark-comparator/benchmark-comparator.module';
|
|
import { GfInvestmentChartModule } from '@ghostfolio/client/components/investment-chart/investment-chart.module';
|
|
import { GfToggleModule } from '@ghostfolio/client/components/toggle/toggle.module';
|
|
import { GfActivitiesFilterModule } from '@ghostfolio/ui/activities-filter/activities-filter.module';
|
|
import { GfPremiumIndicatorModule } from '@ghostfolio/ui/premium-indicator';
|
|
import { GfValueModule } from '@ghostfolio/ui/value';
|
|
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
|
|
|
|
import { AnalysisPageRoutingModule } from './analysis-page-routing.module';
|
|
import { AnalysisPageComponent } from './analysis-page.component';
|
|
|
|
@NgModule({
|
|
declarations: [AnalysisPageComponent],
|
|
imports: [
|
|
AnalysisPageRoutingModule,
|
|
CommonModule,
|
|
GfActivitiesFilterModule,
|
|
GfBenchmarkComparatorModule,
|
|
GfInvestmentChartModule,
|
|
GfPremiumIndicatorModule,
|
|
GfToggleModule,
|
|
GfValueModule,
|
|
MatCardModule,
|
|
NgxSkeletonLoaderModule
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class AnalysisPageModule {}
|
|
|