Welcome to JS Bin
Load cached copy from
 
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>ReactJS Component Example</title>
    <script src="http://fb.me/react-0.8.0.js"></script>
    <script src="http://fb.me/JSXTransformer-0.8.0.js"></script>
</head>
<body>
    <script type="text/jsx">
    /*** @jsx React.DOM */ 
    var myname = React.createClass({ 
        render:function(){ 
          return (
                <h1>Sandeep Kumar Patel</h1>
          ) 
        } 
      }); 
    React.renderComponent(<myname/>,document.body)
    </script>
</body>
</html
Output

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

Dismiss x