]> git.uio.no Git - u/erikhf/frm.git/blob - src/index.html
A dhis deployable sample app
[u/erikhf/frm.git] / src / index.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4     <meta charset="UTF-8">
5     <title>Sample App</title>
6     <script src="../node_modules/systemjs/dist/system.src.js"></script>
7     <script src="../node_modules/angular2/bundles/angular2.dev.js"></script>
8     <script>
9         System.config({
10             packages: {'app': {defaultExtension: 'js'}}
11         });
12         System.import('app/app');
13     </script>
14 </head>
15 <body>
16     <hello-world>loading...</hello-world>
17 </body>
18 </html>