Created
December 14, 2016 22:22
-
-
Save fallengiants/8f29465ae1239f41f367899c73381ed7 to your computer and use it in GitHub Desktop.
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 charset="UTF-8" /> | |
| <title>Hello World</title> | |
| <script src="https://unpkg.com/react@latest/dist/react.js"></script> | |
| <script src="https://unpkg.com/react-dom@latest/dist/react-dom.js"></script> | |
| <script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script> | |
| <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> | |
| </head> | |
| <body> | |
| <div id="root"> | |
| <ul | |
| </div> | |
| <script type="text/babel"> | |
| $.fn.react = function(babelvalue){ | |
| return this.each(function(){ | |
| ReactDOM.render(babelvalue, this); | |
| }); | |
| } | |
| $('#root').react(<h1>Howday!</h1>); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment