23 lines
499 B
TypeScript
Raw Normal View History

2021-04-13 21:53:58 +02:00
import {
ChangeDetectionStrategy,
Component,
Input,
OnInit
} from '@angular/core';
import { PortfolioReportRule } from '@ghostfolio/common/interfaces';
2021-04-13 21:53:58 +02:00
@Component({
selector: 'gf-rule',
changeDetection: ChangeDetectionStrategy.OnPush,
templateUrl: './rule.component.html',
styleUrls: ['./rule.component.scss']
})
export class RuleComponent implements OnInit {
@Input() isLoading: boolean;
@Input() rule: PortfolioReportRule;
public constructor() {}
public ngOnInit() {}
}