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

10 lines
184 B
TypeScript
Raw Normal View History

import type { MetricGauge } from "app/types"
interface MeterProps {
gauge: MetricGauge
}
export function Gauge(props: MeterProps) {
return <span>{props.gauge.value}</span>
}