File size: 246 Bytes
1e92f2d
 
 
 
 
 
1
2
3
4
5
6
7
import { RechartsRootState } from '../state/store';
import { TooltipSyncState } from '../state/tooltipSlice';

export function selectSynchronisedTooltipState(state: RechartsRootState): TooltipSyncState {
  return state.tooltip.syncInteraction;
}