UNPKG

@zendesk/react-measure-timing-hooks

Version:

react hooks for measuring time to interactive and time to render of components

9 lines (8 loc) 265 B
import React from 'react'; import type { MappedSpanAndAnnotation } from '../types'; interface SpanDetailsProps { span: MappedSpanAndAnnotation | null; onClose: () => void; } declare const SpanDetails: React.FC<SpanDetailsProps>; export default SpanDetails;