All:
I wonder if it is possible that binding multiple event handlers to same event?
For example:
var LikeToggleButton = React.createClass({ r
To group multiple actions on an event
onMouseDown={(e) => { e.stopPropagation(); alert('hello'); }}