Created
January 25, 2020 15:18
-
-
Save Nav-Appaiya/3a0ca2ffcd507eaf2c4047ed1edea269 to your computer and use it in GitHub Desktop.
React starter HTML Template
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> | |
| <script src="https://unpkg.com/react@16/umd/react.production.min.js"></script> | |
| <script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script> | |
| <script src="https://unpkg.com/[email protected]/babel.min.js"></script> | |
| <body> | |
| <div id="mydiv"></div> | |
| <script type="text/babel"> | |
| class Hello extends React.Component { | |
| render() { | |
| return <h1>Hello World!</h1> | |
| } | |
| } | |
| </script> | |
| </body> | |
| </html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment