Created
April 11, 2016 19:36
-
-
Save tkssharma/830d612f47403ad639303ac80b8e2a3b to your computer and use it in GitHub Desktop.
Hello World React Component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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