index.js:4 Uncaught TypeError: React.createClass is not a function
at Object.<anonymous> (index.js:4)
at __webpack_require__ (bootstrap 76b8bc0f513264952518:19)
at Object.<anonymous> (bundle.js:1183)
at __webpack_require__ (bootstrap 76b8bc0f513264952518:19)
at module.exports (bootstrap 76b8bc0f513264952518:62)
at bootstrap 76b8bc0f513264952518:62
var React = require('react');
var ReactDOM = require('react-dom');
var CommentBox = React.createClass({
render: function() {
return (
<div>
Hello, world! I am a CommentBox.
</div>
);
}
});
ReactDOM.render(
<CommentBox />,
document.getElementById('example')
);
牛奶老哥哥
Caballarii
相关分类