Skip to content

Instantly share code, notes, and snippets.

@baharev
Created November 21, 2022 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baharev/971d734b93530b9989ee2774930b7be4 to your computer and use it in GitHub Desktop.
Save baharev/971d734b93530b9989ee2774930b7be4 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