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.
26 lines
917 B
26 lines
917 B
import { GfRulesModule } from '@ghostfolio/client/components/rules/rules.module';
|
|
import { GfFireCalculatorComponent } from '@ghostfolio/ui/fire-calculator';
|
|
import { GfPremiumIndicatorComponent } from '@ghostfolio/ui/premium-indicator';
|
|
import { GfValueComponent } from '@ghostfolio/ui/value';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
|
|
|
|
import { FirePageRoutingModule } from './fire-page-routing.module';
|
|
import { FirePageComponent } from './fire-page.component';
|
|
|
|
@NgModule({
|
|
declarations: [FirePageComponent],
|
|
imports: [
|
|
CommonModule,
|
|
FirePageRoutingModule,
|
|
GfFireCalculatorComponent,
|
|
GfPremiumIndicatorComponent,
|
|
GfRulesModule,
|
|
GfValueComponent,
|
|
NgxSkeletonLoaderModule
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class FirePageModule {}
|
|
|