Skip to content

Instantly share code, notes, and snippets.

View colinramsay's full-sized avatar

Colin Ramsay colinramsay

View GitHub Profile
@colinramsay
colinramsay / gist:42d3dbd0316212d65161
Created May 12, 2015 20:24
react-router 0.13.2 TransitionGroup
let AnimationWrapper = React.createClass({
render() {
console.log(this.props.childClassName + ' render');
return this.props.children;
},
componentWillAppear (callback) {
console.log(this.props.childClassName + ' willappear');
callback();