-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.12 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
<html>
<head>
<title>Angular 2 QuickStart</title>
</head>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="styles/styles.css">
<!-- 1. Load libraries -->
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/rxjs/bundles/Rx.umd.js"></script>
<script src="node_modules/angular2/bundles/angular2-all.umd.js"></script>
<!-- 2. Load our 'modules' -->
<script src='app/tabs-component/app.tabsComponent.js'></script>
<script src='app/form-component/app.formComponent.js'></script>
<script src='app/names-list-component/app.namesListComponent.js'></script>
<script src='app/tabs-component/app.component.js'></script>
<script src='app/form-component/app.component.js'></script>
<script src='app/names-list-component/app.component.js'></script>
<script src='app/boot.js'></script>
</head>
<!-- 3. Display the application -->
<body>
<tabs-app></tabs-app>
<my-app class="showApp">Loading...</my-app>
<my-app2 class="hideApp">Loading...</my-app2>
</body>
</html>