We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3579e38 commit 7bf68cdCopy full SHA for 7bf68cd
app/main.ts
app/styles.css
index.html
@@ -0,0 +1,21 @@
1
+<html>
2
+<head>
3
+ <title>One source of truth for Angular 2</title>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <link rel="stylesheet" href="app/styles.css">
7
+
8
+ <script src="node_modules/zone.js/dist/zone.js"></script>
9
+ <script src="node_modules/reflect-metadata/Reflect.js"></script>
10
+ <script src="node_modules/systemjs/dist/system.src.js"></script>
11
12
+ <script src="systemjs.config.js"></script>
13
+ <script>
14
+ System.import('app').catch(function(err){ console.error(err); });
15
+ </script>
16
+</head>
17
18
+<body>
19
+<my-app>Loading...</my-app>
20
+</body>
21
+</html>
0 commit comments