MCPcopy Index your code
hub / github.com/tinyplex/tinybase / MetricRow

Function MetricRow

src/ui-react-inspector/MetricsView.tsx:12–18  ·  view source on GitHub ↗
({metrics, metricId}: MetricProps)

Source from the content-addressed store, hash-verified

10import {Details} from './Details.tsx';
11
12const MetricRow = ({metrics, metricId}: MetricProps) => (
13 <tr>
14 <th title={metricId}>{metricId}</th>
15 <td>{(metrics as Metrics)?.getTableId(metricId)}</td>
16 <td>{useMetric(metricId, metrics)}</td>
17 </tr>
18);
19
20export const MetricsView = ({
21 metricsId,

Callers

nothing calls this directly

Calls 2

useMetricFunction · 0.90
getTableIdMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…