EfficiencyMinerUnitView
Efficiency drilldown by individual miner serial — outliers and worst-performers surface here.
Efficiency drilldown by individual miner serial — outliers and worst-performers surface here.
import { EfficiencyMinerUnitView } from "@tetherto/mdk-react-devkit";| Prop | Status | Type | Default | Description |
|---|---|---|---|---|
isLoading | Optional | boolean | undefined | — | — |
onTimeFrameChange | Optional | ((start: Date, end: Date) => void) | undefined | — | — |
chartInput | Optional | ToBarChartDataInput | undefined | — | — |
isEmpty | Optional | boolean | undefined | — | — |
Usage
Per-unit efficiency tab inside OperationsEfficiency. Shows efficiency data for individual miner units with search and filter.
Example
import { EfficiencyMinerUnitView } from '@tetherto/mdk-react-devkit'export const EfficiencyMinerUnitViewExample = () => ( <div className="mdk-example-row"> <EfficiencyMinerUnitView /> </div>)