Skip to content

Instantly share code, notes, and snippets.

@fay-jai
Created March 21, 2016 06:36
Show Gist options
  • Save fay-jai/4c64248a5128518b7a2b to your computer and use it in GitHub Desktop.
Save fay-jai/4c64248a5128518b7a2b to your computer and use it in GitHub Desktop.
Getting Started with Typescript, ReactJS, and Webpack
<!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>
@jecaestevez
Copy link

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>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment