React Base Fiddle (JSX)

Starting point for creating JSFiddles with React. This uses React with Addons.

by Michelle Bu

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.24/browser.js"></script>
<script src="https://npmcdn.com/react@latest/dist/react-with-addons.js"></script>
<script src="https://npmcdn.com/react-dom@latest/dist/react-dom.js"></script>
<script src="https://facebook.github.io/react/js/jsfiddle-integration-babel.js"></script>

<div id="container">
    <!-- This element's contents will be replaced with your component. -->
</div>

CSS

.target {
  width: 50px;
  height: 50px;
  background-color: red;
}

JavaScript 1.7

var Hello = React.createClass({
	handleClick: function() {
  	this._input.focus();
  },
  render: function() {
    return (
    	<div>
      	<div className="target" onClick={this.handleClick} />
        <input ref={(ref) => this._input = ref} />
      </div>
    );
  }
});

ReactDOM.render(
  <Hello />,
  document.getElementById('container')
);