I am trying to make use of the ReactCSSTransitionGroup library that they explain in the official React documentation. I'm copying this code to try. But still it does not work. I have this error in the console:
Uncaught Error: Minified React error #119; visit http://facebook.github.io/react/docs/error-decoder.html?invariant=119 for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
Those "Helpul" warnings can be read here .
My imported js files are just these:
<script src="{% static "js/react.min.js" %}"></script>
<script src="{% static "js/react-dom.min.js" %}"></script>
<script src="{% static "js/react-with-addons.min.js" %}"></script>
<script src="{% static "js/babel.min.js" %}"></script> <!-- Para compilar el JSX en ambientes non Node, compila el codigo de abajo-->
<script src="{% static "js/pruebaAnimacion.js" %}" type="text/babel"></script>
I do not understand what the problem is. In fiddle it works perfectly.