Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created April 11, 2016 19:36
Show Gist options
  • Save tkssharma/830d612f47403ad639303ac80b8e2a3b to your computer and use it in GitHub Desktop.
Save tkssharma/830d612f47403ad639303ac80b8e2a3b to your computer and use it in GitHub Desktop.
Hello World React Component
<html>
<head>
<script src="react.js"></script>
<script src="transformer.js"></script>
<title>My First React File</title>
</head>
<body>
<script type="text/jsx">
var HelloWorld = React.createClass({
render: function() {
return (
<div>
<h1>Hello World</h1>
<p>This is some text</p>
</div>
);
}
});
React.render(<HelloWorld />, document.body);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment