Skip to content

Instantly share code, notes, and snippets.

@gholz60
Created December 15, 2023 21:36
Show Gist options
  • Save gholz60/bb07ab025c97b508c656eaacb62a84bb to your computer and use it in GitHub Desktop.
Save gholz60/bb07ab025c97b508c656eaacb62a84bb to your computer and use it in GitHub Desktop.
Hello World in React
<div id="root">
<!-- This element's contents will be replaced with your component. -->
</div>
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<h1>Hello, world!</h1>);
<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