Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://fb.me/react-0.14.7.min.js"></script>
<script src="https://fb.me/react-dom-0.14.7.min.js"></script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div id='content'></div>
</body>
</html>
 
class Text extends React.Component {
  render() {
    return (
        <div>
          { this.props.text }
          <br />
        </div>
    );
  }
}
ReactDOM.render(<Text text="Hello World!"></Text>, document.querySelector('#content'));
Output

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

Dismiss x
public
Bin info
addi90pro
0viewers