index.html 810 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Basic Property Grid</title>
  5. <!-- include react -->
  6. <script src="./node_modules/react/dist/react-with-addons.js"></script>
  7. </head>
  8. <body>
  9. <div id="content">
  10. <!-- this is where the root react component will get rendered -->
  11. </div>
  12. <!-- include the webpack-dev-server script so our scripts get reloaded when we make a change -->
  13. <!-- we'll run the webpack dev server on port 8090, so make sure it is correct -->
  14. <script src="http://vm:8090/webpack-dev-server.js"></script>
  15. <!-- include the bundle that contains all our scripts, produced by webpack -->
  16. <!-- the bundle is served by the webpack-dev-server, so serve it also from localhost:8090 -->
  17. <script type="text/javascript" src="http://vm:8090/assets/bundle.js"></script>
  18. </body>
  19. </html>