mirror of
https://github.com/mempool/mempool.git
synced 2025-03-01 01:00:00 +01:00
14 lines
252 B
TypeScript
14 lines
252 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-mining-start',
|
|
templateUrl: './mining-start.component.html',
|
|
})
|
|
export class MiningStartComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|