CSSTransition group not working (undefined) React.js

I am calling the CSS Transition Group property from React.

In my js file:

var ReactCSSTransitionGroup = React.addons.CSSTransitionGroup;

      

I am getting this exact error:

Uncaught TypeError: Cannot read property 'CSSTransitionGroup' of undefined

      

Any idea?

+3


source to share


1 answer


Make sure you are using React with Add-Ons

<script src="https://fb.me/react-with-addons-0.13.3.min.js"></script>



http://facebook.github.io/react/downloads.html

+1


source







All Articles