Skip to content

Instantly share code, notes, and snippets.

@drcmda
Last active February 7, 2018 12:36
Show Gist options
  • Save drcmda/c5082ce0a929f4e208bc07933b3acd04 to your computer and use it in GitHub Desktop.
Save drcmda/c5082ce0a929f4e208bc07933b3acd04 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello World</title>
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/[email protected]/babel.min.js"></script>
</head>
<body>
<div id="root"></div>
<script type="text/babel">
ReactDOM.render(<h1>Hello, world!</h1>, document.getElementById('root'))
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment