Created
August 16, 2024 12:52
-
-
Save matrix-compute/9b2dc9e9b2d31b87931dfa6a9d5133e8 to your computer and use it in GitHub Desktop.
Hello World in React
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
const root = ReactDOM.createRoot(document.getElementById('root')); | |
root.render(<h1>Hello, world!</h1>); |
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
<script src="https://unpkg.com/react/umd/react.development.js"></script> | |
<script src="https://unpkg.com/react-dom/umd/react-dom.development.js"></script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment