| 3 | import { useCellAnnotations } from './hooks' |
| 4 | |
| 5 | interface HeatMapCellAnnotationsProps<Datum extends HeatMapDatum> { |
| 6 | cells: ComputedCell<Datum>[] |
| 7 | annotations: NonNullable<HeatMapCommonProps<Datum>['annotations']> |
| 8 | } |
| 9 | |
| 10 | export const HeatMapCellAnnotations = <Datum extends HeatMapDatum>({ |
| 11 | cells, |
nothing calls this directly
no outgoing calls
no test coverage detected