Last active
November 11, 2017 10:48
-
-
Save rainforest-of-code/f04eac88a14d61d0ce52ad3ef01fbfbd to your computer and use it in GitHub Desktop.
starting template for getting started with react
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
<head> | |
<title>My First React Experience</title> | |
<script src="https://unpkg.com/[email protected]/umd/react.development.js"></script> | |
<script src="https://unpkg.com/[email protected]/umd/react-dom.development.js"></script> | |
</head> | |
<body> | |
<div id="app"></div> | |
<script> | |
//Will add code here to try React | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment