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