Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
246 Bytes
import { RechartsRootState } from '../state/store';
import { TooltipSyncState } from '../state/tooltipSlice';
export function selectSynchronisedTooltipState(state: RechartsRootState): TooltipSyncState {
return state.tooltip.syncInteraction;
}