Skip to content

Instantly share code, notes, and snippets.

@aminamid
Last active August 29, 2015 14:11
Show Gist options
  • Save aminamid/16cd913cf163e244c45f to your computer and use it in GitHub Desktop.
Save aminamid/16cd913cf163e244c45f to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Hello, World!</title>
<script src="http://fb.me/react-0.11.2.js"></script>
<script src="http://fb.me/JSXTransformer-0.11.2.js"></script>
</head>
<body>
<div id="content"></div>
<script type="text/jsx">
/** @jsx React.DOM */
React.renderComponent(
<h1>Hello, World!</h1>,
document.getElementById('content')
);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment