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.
25 lines
891 B
25 lines
891 B
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatCardModule } from '@angular/material/card';
|
|
import { MatLegacyTooltipModule as MatTooltipModule } from '@angular/material/legacy-tooltip';
|
|
import { RouterModule } from '@angular/router';
|
|
import { GfPremiumIndicatorModule } from '@ghostfolio/ui/premium-indicator';
|
|
|
|
import { PricingPageRoutingModule } from './pricing-page-routing.module';
|
|
import { PricingPageComponent } from './pricing-page.component';
|
|
|
|
@NgModule({
|
|
declarations: [PricingPageComponent],
|
|
imports: [
|
|
CommonModule,
|
|
GfPremiumIndicatorModule,
|
|
MatButtonModule,
|
|
MatCardModule,
|
|
MatTooltipModule,
|
|
PricingPageRoutingModule,
|
|
RouterModule
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class PricingPageModule {}
|
|
|