I've got this weird message after following a React tutorial building a simple app. http://blog.revathskumar.com/2014/05/getting-started-with-react.html
I used bower to install react and included the scripts like so:
<script src="bower_components/react/react.js"></script>
<script src="bower_components/react/JSXTransformer.js"></script>
as in the tutorial. At first I thought the scripts weren't loaded but that's obviously not the case. What is the problem?
bower installs the latest version in this case version 0.12.0.
there is a change in the render function convention.
https://facebook.github.io/react/blog/2014/10/28/react-v0.12.html
so use
instead of