Created
January 14, 2017 14:13
-
-
Save airportyh/54ee6b150b3df178a529c7644e7a61b0 to your computer and use it in GitHub Desktop.
Quickstart HTML file for getting started with learning basic React without all the cruft of setting up a build environment.
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>Babel Quickstart</title> | |
| <script src="https://unpkg.com/babel-standalone@6/babel.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.4.2/react.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.4.2/react-dom.js"></script> | |
| </head> | |
| <body> | |
| <div id="root"></div> | |
| <script type="text/babel" data-presets="react"> | |
| class MyThing extends React.Component{ | |
| render() { | |
| return <div>Hello, world!</div>; | |
| } | |
| } | |
| ReactDOM.render(<MyThing/>, document.getElementById('root')); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment