Skip to content

Instantly share code, notes, and snippets.

@matrix-compute
Created August 16, 2024 12:52
Show Gist options
  • Save matrix-compute/9b2dc9e9b2d31b87931dfa6a9d5133e8 to your computer and use it in GitHub Desktop.
Save matrix-compute/9b2dc9e9b2d31b87931dfa6a9d5133e8 to your computer and use it in GitHub Desktop.
Hello World in React
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