Skip to content

Instantly share code, notes, and snippets.

@NOUIY
Created March 2, 2022 12:19
Show Gist options
  • Save NOUIY/f6c488282efafa1c071ea408dc95d973 to your computer and use it in GitHub Desktop.
Save NOUIY/f6c488282efafa1c071ea408dc95d973 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>