mempool/frontend/src/app/lightning/nodes-ranking/nodes-ranking.component.ts

21 lines
541 B
TypeScript
Raw Normal View History

2022-08-17 12:53:26 +02:00
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
2022-08-17 12:53:26 +02:00
@Component({
selector: 'app-nodes-ranking',
templateUrl: './nodes-ranking.component.html',
styleUrls: ['./nodes-ranking.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class NodesRanking implements OnInit {
type: string;
constructor(private route: ActivatedRoute) {}
2022-08-17 12:53:26 +02:00
ngOnInit(): void {
this.route.data.subscribe(data => {
this.type = data.type;
});
2022-08-17 12:53:26 +02:00
}
}