I want to have a react component flip over when a user clicks on the DOM element. I see some documentation about their animation mixin but it looks to be set up for \"enter\
I've never used React, but if it uses CSS3 animations/transitions, you might be able to do something like this:
React
CSS3 animations/transitions
element.addEventListener( 'webkitTransitionEnd', function( event ) { console.log( 'Complete'); }, false );