mirror of
https://github.com/mempool/mempool.git
synced 2025-03-01 01:00:00 +01:00
16 lines
373 B
TypeScript
16 lines
373 B
TypeScript
|
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-nodes-ranking',
|
||
|
templateUrl: './nodes-ranking.component.html',
|
||
|
styleUrls: ['./nodes-ranking.component.scss'],
|
||
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||
|
})
|
||
|
export class NodesRanking implements OnInit {
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
console.log('hi');
|
||
|
}
|
||
|
|
||
|
}
|