({
metrics,
metricsById,
metricsId,
}: {
readonly metrics?: Metrics;
readonly metricsById?: {[metricsId: string]: Metrics};
readonly metricsId?: string;
})
| 496 | ); |
| 497 | |
| 498 | const ContextMetrics = ({ |
| 499 | metrics, |
| 500 | metricsById, |
| 501 | metricsId, |
| 502 | }: { |
| 503 | readonly metrics?: Metrics; |
| 504 | readonly metricsById?: {[metricsId: string]: Metrics}; |
| 505 | readonly metricsId?: string; |
| 506 | }) => ( |
| 507 | <Provider metrics={metrics} metricsById={metricsById}> |
| 508 | <ContextMetricsChild metricsId={metricsId} /> |
| 509 | </Provider> |
| 510 | ); |
| 511 | |
| 512 | const ContextMetricsChild = ({metricsId}: {readonly metricsId?: string}) => ( |
| 513 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…