forked from Archives/Athou_commafeed
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
|
|
import { MetricGauge } from "app/types"
|
||
|
|
|
||
|
|
interface MeterProps {
|
||
|
|
gauge: MetricGauge
|
||
|
|
}
|
||
|
|
|
||
|
|
export function Gauge(props: MeterProps) {
|
||
|
|
return <span>{props.gauge.value}</span>
|
||
|
|
}
|