import React from 'react';
var ReactDOM = require('react-dom');
var HelloWorldMixin = {
sayHello: function () {
return "hello world!"
}
};
var HelloWorld = React.createClass({
mixins: [HelloWorldMixin],
render: function () {
return <div>{this.sayHello()}
</div>
}
})
ReactDOM.render(
<HelloWorld />
, document.getElementById('J_contentContainer'))
React Mixin HelloWorld
最新推荐文章于 2025-04-03 21:20:47 发布