Created
January 6, 2023 19:11
-
-
Save cindywu/1d3c6399188f27e48cedac52a3cb501d to your computer and use it in GitHub Desktop.
react react-dom babel render a thing
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
<!-- index.html --> | |
<html> | |
<body> | |
<div> | |
<div id="app"> | |
</div> | |
<script src="https://unpkg.com/react@17/umd/react.development.js"></script> | |
<script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js"></script> | |
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script> | |
<script type="text/jsx"> | |
const app = document.getElementById('app'); | |
ReactDOM.render(<h1>Develop. Preview. Ship. 🚀</h1>, app); | |
</script> | |
</div> | |
</body> | |
</html> |
Author
cindywu
commented
Jan 6, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment