Created
          April 28, 2015 06:05 
        
      - 
      
- 
        Save possibilities/b63ce6bccbb53ed33670 to your computer and use it in GitHub Desktop. 
    JS Bin hello react // source http://jsbin.com/keneqa
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="hello react"> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.2/react-with-addons.js"></script> | |
| </head> | |
| <body> | |
| <div class="app"></div> | |
| <script id="jsbin-javascript"> | |
| var Hello = React.createClass({displayName: 'Hello', | |
| render: function() { | |
| return ( | |
| React.createElement("div", null, "fukka") | |
| ); | |
| } | |
| }) | |
| React.render(React.createElement(Hello, null), document.querySelector('.app')); | |
| </script> | |
| <script id="jsbin-source-javascript" type="text/javascript">var Hello = React.createClass({ | |
| render: function() { | |
| return ( | |
| <div>fukka</div> | |
| ); | |
| } | |
| }) | |
| React.render(<Hello />, document.querySelector('.app'));</script></body> | |
| </html> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | var Hello = React.createClass({displayName: 'Hello', | |
| render: function() { | |
| return ( | |
| React.createElement("div", null, "fukka") | |
| ); | |
| } | |
| }) | |
| React.render(React.createElement(Hello, null), document.querySelector('.app')); | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment