-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (22 loc) · 1.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html>
<head>
<title>kodo-angular2-iniciante</title>
<!-- Usa alguns polyfills providos para o angular -->
<script src="node_modules/angular2/bundles/angular2-polyfills.min.js"></script>
<!-- systemjs carregador de modulo "universal" - funciona com modulos do ES2015, AMD, CommonJS -->
<script src="node_modules/systemjs/dist/system.js"></script>
<!-- Reflect eh usado como polyfill das anotacoes usadas pelo Angular2 -->
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<!-- Utiliza o RxJs para trabalhar com Reactive Programming -->
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<!-- Angular2.0.0-alpha35 -->
<script src="node_modules/angular2/bundles/angular2.min.js"></script>
</head>
<body>
<!-- hello-world - nome do nosso componente -->
<hello-world></hello-world>
<!-- Importacao do nosso script inicial -->
<script>System.import('index.js');</script>
</body>
</html>