Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="ReactJS Hello World" />
  <meta charset="utf-8">
  <title>First React Component</title>
  <script src="http://fb.me/react-0.8.0.js"></script>
  <script src="http://fb.me/JSXTransformer-0.8.0.js"></script>
  <script type="text/jsx">
    /*** @jsx React.DOM */
    var APP = React.createClass({
      render: function() {
        return (
          <h1>Hello Reactive World</h1>
        )
      }
    });
    
    React.renderComponent(<APP />, document.body);
    
  </script>
</head>
<body>
</body>
</html>
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers