Skip to content

Instantly share code, notes, and snippets.

@brunoventura
Created September 24, 2018 16:22
Show Gist options
  • Save brunoventura/96ac5d74ba4ca8587cd16305586e5b00 to your computer and use it in GitHub Desktop.
Save brunoventura/96ac5d74ba4ca8587cd16305586e5b00 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<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">
class App extends React.Component {
render() {
return <h1>Hello from our app</h1>
}
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment