Created
December 14, 2017 20:13
-
-
Save gondar00/dd69c8e1de92f179bca7c49deeb220fa to your computer and use it in GitHub Desktop.
basic .html file
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> | |
<meta charset="utf-8"> | |
<title>React 101 Demo!</title> | |
<style media="screen"> | |
.demo { | |
border: 1px solid #ccc; | |
margin: 1em; | |
padding: 1em; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="js"></div> | |
<div id="react"></div> | |
<script src="script.js" charset="utf-8"></script> | |
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script> | |
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment