您现在的位置:首页 >> 前端 >> 内容

ReactMixinHelloWorld

时间:2016/12/19 9:20:52 点击:

  核心提示:import React from react;var ReactDOM = require(react-dom); var HelloWorldMixin = {sayHello: function...
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 <p>{this.sayHello()}
        </p>
    }
})
ReactDOM.render(
     <HelloWorld />
    , document.getElementById('J_contentContainer'))

Tags:RE EA AC CT 
作者:网络 来源:ISaiSai的专栏