Last active
June 24, 2021 19:48
-
-
Save kentcdodds/5274dfa1eb31e6d22b9eddd1efc773dc to your computer and use it in GitHub Desktop.
The one true react boilerplate
This file contains 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
<body> | |
<div id="⚛️"></div> | |
<script src="https://unpkg.com/[email protected]/umd/react.development.js"></script> | |
<script src="https://unpkg.com/[email protected]/umd/react-dom.development.js"></script> | |
<script src="https://unpkg.com/[email protected]/babel.js"></script> | |
<script type="text/babel"> | |
ReactDOM.render(<div>Hello World!</div>, document.getElementById('⚛️')) | |
</script> | |
</body> |
Simple HTML boilerplate
<body>
<div>Hello World!</div>
</body>
Simple HTML boilerplate
<body> <div>Hello World!</div> </body>
LMAO brilliant
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I did something like this last year for
hyperHTML
: https://gist.github.com/joshgillies/bff1e5f6e9ab62869abd6f73c1d22606Basically: