Is there anyway to trigger React's mouseover and mouseenter event? It's possible to fire:
ReactDOM.findDOMNode(someNode).focus();
ReactDOM.findDOMNode(someNode).click();
Is there a similar way to fire mouseenter? I need to do a complicated React event with a 3rd party library.