({metrics, metricId}: MetricProps)
| 10 | import {Details} from './Details.tsx'; |
| 11 | |
| 12 | const 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 | |
| 20 | export const MetricsView = ({ |
| 21 | metricsId, |
nothing calls this directly
no test coverage detected
searching dependent graphs…