Skip to content

Instantly share code, notes, and snippets.

@coloredlambda
Created August 23, 2017 08:19
Show Gist options
  • Save coloredlambda/c29750b60ce39641e71e77c28cb942ec to your computer and use it in GitHub Desktop.
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
<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/react@15.4.2/dist/react.js' type="text/javascript"></script>
<script src='https://unpkg.com/react-dom@15.4.2/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