mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
6 changed files with 26 additions and 48 deletions
@ -1,22 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { MatButtonModule } from '@angular/material/button'; |
|
||||
import { MatMenuModule } from '@angular/material/menu'; |
|
||||
import { IonIcon } from '@ionic/angular/standalone'; |
|
||||
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; |
|
||||
|
|
||||
import { RuleComponent } from './rule.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [RuleComponent], |
|
||||
exports: [RuleComponent], |
|
||||
imports: [ |
|
||||
CommonModule, |
|
||||
IonIcon, |
|
||||
MatButtonModule, |
|
||||
MatMenuModule, |
|
||||
NgxSkeletonLoaderModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GfRuleModule {} |
|
@ -1,16 +0,0 @@ |
|||||
import { GfRuleModule } from '@ghostfolio/client/components/rule/rule.module'; |
|
||||
|
|
||||
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 { RulesComponent } from './rules.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [RulesComponent], |
|
||||
exports: [RulesComponent], |
|
||||
imports: [CommonModule, GfRuleModule, MatButtonModule, MatCardModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GfRulesModule {} |
|
Loading…
Reference in new issue