[React] Hello World

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>React Hello World</title>
    <script src="./bower_components/react/react.min.js"></script>
    <script src="./bower_components/react/JSXTransformer.js"></script>
</head>
<body>
<script type="text/jsx">
    /** @jsx React.DOM */
    var Hello = React.createClass({
        render: function() {
            return <div>Hello {this.props.title}'s {this.props.name}</div>;
        }
    });
    React.renderComponent(<Hello name="World" title="Zhentian"/>, document.body);
</script>
</body>
</html>

 

Read More: http://facebook.github.io/react/docs/getting-started.html

posted @ 2014-09-09 05:05  Zhentiw  阅读(173)  评论(0)    收藏  举报