Error with basic React Example: Uncaught TypeError: undefined is not a function
After 0.14 React moved to ReactDOM.render(), so if you update React, your code should be: ReactDOM.render( <CommentBox />, document.getElementById(‘content’)); But make sure to include both react.js and react-dom.js in your project since those are now separated.