Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="//fb.me/react-with-addons-0.13.3.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div id="app"></div>
</body>
</html>
 
var MyContainer = React.createClass({
  getChildContext: function() {
    // it exposes one property "text", any of the components that are
    // rendered inside it will be able to access it
    return { text: 'Where is my son?' };
  },
  childContextTypes: {
    text: React.PropTypes.string
  },
  render: function() {
    return  <Intermediate />;
  }
});
var Intermediate = React.createClass({
  render: function() {
    return <Child />;
  }
});
var Child = React.createClass({
  contextTypes: {
    text: React.PropTypes.string
  },
  render: function() {
    return <span>{this.context.text}</span>;
  }
});
React.render(<MyContainer />, document.getElementById('app'));
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers