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