Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
  <script src="https://fb.me/react-0.13.3.js"></script>
  <script src="https://fb.me/JSXTransformer-0.13.3.js"></script>
</head>
<body>
  <h3>Render</h3>
  
  <p>React components need only a single node to be added to your application.</p>
  
  <p>Use <code>React.render</code> to add the word "PROFIT!" to the empty second list item.</p>
  
  <ul>
    <li>Write React</li>
    <li id="profit"></li>
  </ul>
  
  <script type="text/jsx">
    React.render(<span>PROFIT!</span>, document.getElementById('profit'));
  </script>
</body>
</html>
Output

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

Dismiss x
public
Bin info
chantasticpro
0viewers