Files
Athou_commafeed/commafeed-client/src/components/metrics/Gauge.tsx

10 lines
188 B
TypeScript
Raw Normal View History

2022-08-14 18:15:40 +02:00
import { MetricGauge } from "app/types"
interface MeterProps {
gauge: MetricGauge
}
export function Gauge(props: MeterProps) {
return <span>{props.gauge.value}</span>
}