Created
July 28, 2020 10:27
-
-
Save jellehak/53b7970b550a773b8c32d049dae8222a to your computer and use it in GitHub Desktop.
This file contains 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> | |
<script src="https://unpkg.com/react@16/umd/react.production.min.js"></script> | |
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script> | |
<script src="https://unpkg.com/[email protected]/babel.min.js"></script> | |
<body> | |
<div id="app"></div> | |
<script type="text/babel"> | |
class Hello extends React.Component { | |
render() { | |
return <h1>Hello World!</h1> | |
} | |
} | |
ReactDOM.render(<Hello />, document.getElementById('app')) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment