Created
March 5, 2019 20:37
-
-
Save kenmazaika/3f137ef61a1074f74ae4feea0022bf4e 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> | |
<head> | |
<meta charset="utf-8"> | |
<title>Flashback</title> | |
<script src="https://unpkg.com/@babel/[email protected]/babel.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.0.0/umd/react.development.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.0.0/umd/react-dom.development.js"></script> | |
<link rel="stylesheet" type="text/css" href="index.css"></link> | |
</head> | |
<body> | |
<div id="app"></div> | |
<script type='text/babel'> | |
ReactDOM.render(<h1>HELLO WORLD</h1>, document.getElementById('app')); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment