Skip to content

Instantly share code, notes, and snippets.

@nstadigs
Created June 20, 2016 19:55
Show Gist options
  • Select an option

  • Save nstadigs/fbdae50b0cbb65ef54c02b6361b1dc84 to your computer and use it in GitHub Desktop.

Select an option

Save nstadigs/fbdae50b0cbb65ef54c02b6361b1dc84 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>Hello React!</title>
</head>
<body>
<div id="root"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.js"></script>
<script>
ReactDOM.render(React.createElement('h1', null, 'Hello, React!'), root);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment