Last active
September 25, 2018 09:26
-
-
Save ar-android/b2a95de096dc28257bc87d7bca633849 to your computer and use it in GitHub Desktop.
Simple react app
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Simple React App</title> | |
<script src="https://unpkg.com/react@15/dist/react.min.js"> </script> | |
<script src="https://unpkg.com/react-dom@15/dist/react-dom.min.js"></script> | |
<script src="https://unpkg.com/[email protected]/babel.min.js"></script> | |
</head> | |
<body> | |
<div id="root"></div> | |
<script type="text/babel"> | |
const name = 'Ahmad Rosid' | |
const element = <h1>Hello, {name}</h1> | |
ReactDOM.render(element, document.getElementById("root")); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment