Skip to content

Instantly share code, notes, and snippets.

@ivanoats
Forked from anonymous/index.html
Created December 3, 2014 05:35
Show Gist options
  • Save ivanoats/7ed5ca6213cf222b9408 to your computer and use it in GitHub Desktop.
Save ivanoats/7ed5ca6213cf222b9408 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="ReactJS Hello World" />
<meta charset="utf-8">
<title>First React Component</title>
<script src="http://fb.me/react-0.8.0.js"></script>
<script src="http://fb.me/JSXTransformer-0.8.0.js"></script>
<script type="text/jsx">
/*** @jsx React.DOM */
var APP = React.createClass({
render: function() {
return (
<h1>Hello Reactive World</h1>
)
}
});
React.renderComponent(<APP />, document.body);
</script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment