Created
August 23, 2017 08:19
-
-
Save coloredlambda/c29750b60ce39641e71e77c28cb942ec to your computer and use it in GitHub Desktop.
Hello World in React, created on my first day at 8:18 AM
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> | |
<meta charset="utf-8"> | |
<title>React Tutorials</title> | |
</head> | |
<body> | |
<!-- Target Container --> | |
<div id="react-container"></div> | |
<!-- Target Container end --> | |
<script src='https://unpkg.com/[email protected]/dist/react.js' type="text/javascript"></script> | |
<script src='https://unpkg.com/[email protected]/dist/react-dom.js' type="text/javascript"></script> | |
<script> | |
const element = React.createElement('h1', null, 'Hello World'); | |
ReactDOM.render(element, document.getElementById('react-container')); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment