Skip to content

Instantly share code, notes, and snippets.

@brunoventura
Last active September 24, 2018 05:47
Show Gist options
  • Save brunoventura/3497793882ae103e11572cefce59d3e8 to your computer and use it in GitHub Desktop.
Save brunoventura/3497793882ae103e11572cefce59d3e8 to your computer and use it in GitHub Desktop.
30 days of React samples
<html>
<head>
<meta charset="utf-8">
<title>Hello world</title>
<!-- Script tags including React -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.1/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.1/react-dom.min.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
</head>
<body>
<div id="app"></div>
<script type="text/babel">
ReactDOM.render(
<h1>Hello world</h1>,
document.querySelector('#app')
);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment