Advertisement
Guest User

Html

a guest
Feb 4th, 2016
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.80 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>Angular 2 QuickStart</title>
  4.     <meta name="viewport" content="width=device-width, initial-scale=1">
  5.  
  6.     <script src="node_modules/es6-shim/es6-shim.min.js"></script>
  7.     <script src="node_modules/systemjs/dist/system-polyfills.js"></script>
  8.     <script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
  9.     <script src="node_modules/systemjs/dist/system.src.js"></script>
  10.     <script src="node_modules/rxjs/bundles/Rx.js"></script>
  11.     <script src="node_modules/angular2/bundles/angular2.dev.js"></script>
  12.     <script>
  13.         System.config({packages: {app: {format: 'register', defaultExtension: 'js'}}});
  14.         System.import('bundle').then(null, console.error.bind(console));
  15.     </script>
  16. </head>
  17. <body>
  18.     <my-app>Loading...</my-app>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement