Created
March 21, 2016 06:36
-
-
Save fay-jai/4c64248a5128518b7a2b to your computer and use it in GitHub Desktop.
Getting Started with Typescript, ReactJS, and Webpack
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>Getting Started with Typescript, ReactJS, and Webpack</title> | |
</head> | |
<body> | |
<!-- this is where our Hello component will get rendered into --> | |
<div id="root"></div> | |
<script src="build/bundle.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
did you missed add for this example this:
<script src="./node_modules/react/dist/react.js"></script>
<script src="./node_modules/react-dom/dist/react-dom.js"></script>