File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <!doctype html>
2+ < html >
3+ < head >
4+ < title > Angular 2 Example</ title >
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1 ">
6+ < link rel ="stylesheet " href ="styles.css ">
7+
8+ <!-- 1. Load libraries -->
9+ <!-- IE required polyfill -->
10+ < script src ="node_modules/core-js/client/shim.min.js "> </ script >
11+
12+ < script src ="node_modules/zone.js/dist/zone.js "> </ script >
13+ < script src ="node_modules/reflect-metadata/Reflect.js "> </ script >
14+
15+ < script src ="node_modules/rxjs/bundles/Rx.js "> </ script >
16+ < script src ="node_modules/@angular/core/bundles/core.umd.js "> </ script >
17+ < script src ="node_modules/@angular/common/bundles/common.umd.js "> </ script >
18+ < script src ="node_modules/@angular/compiler/bundles/compiler.umd.js "> </ script >
19+ < script src ="node_modules/@angular/platform-browser/bundles/platform-browser.umd.js "> </ script >
20+ < script src ="node_modules/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js "> </ script >
21+
22+ <!-- 2. Load our 'modules' -->
23+ < script src ='app/app.component.js '> </ script >
24+ < script src ='app/app.module.js '> </ script >
25+ < script src ='app/main.js '> </ script >
26+ </ head >
27+
28+ <!-- 3. Display the application -->
29+ < body >
30+ < my-app > Loading...</ my-app >
31+ </ body >
32+
33+ </ html >
You can’t perform that action at this time.
0 commit comments