2022-02-17 17:10:20 +09:00
|
|
|
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
|
2022-02-16 17:32:12 +09:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-mining-dashboard',
|
|
|
|
templateUrl: './mining-dashboard.component.html',
|
2022-02-17 17:10:20 +09:00
|
|
|
styleUrls: ['./mining-dashboard.component.scss'],
|
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
2022-02-16 17:32:12 +09:00
|
|
|
})
|
|
|
|
export class MiningDashboardComponent implements OnInit {
|
|
|
|
|
|
|
|
constructor() { }
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|