Skip to content

Instantly share code, notes, and snippets.

@NOUIY
Created March 2, 2022 12:19
Show Gist options
  • Save NOUIY/8820dea35ad8a60cc39067e1b9f5c947 to your computer and use it in GitHub Desktop.
Save NOUIY/8820dea35ad8a60cc39067e1b9f5c947 to your computer and use it in GitHub Desktop.
Hello World in React
ReactDOM.render(
<h1>Hello, world!</h1>,
document.getElementById('root')
);
<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