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.
22 lines
499 B
22 lines
499 B
import {
|
|
ChangeDetectionStrategy,
|
|
Component,
|
|
Input,
|
|
OnInit
|
|
} from '@angular/core';
|
|
import { PortfolioReportRule } from '@ghostfolio/common/interfaces';
|
|
|
|
@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() {}
|
|
}
|
|
|