typescript-react-webpack-app-creator
Version:
Npm module to create an empty react app with typescript as compiller, webpack as bundler and tslint included.
17 lines (15 loc) • 423 B
HTML
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
</head>
<body>
<div id="example"></div>
<!-- Dependencies -->
<script src="./node_modules/react/dist/react.js"></script>
<script src="./node_modules/react-dom/dist/react-dom.js"></script>
<!-- Main -->
<script src="./dist/bundle.js"></script>
</body>
</html>