forked from vaseker/ag-grid-ng2-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (29 loc) · 1.17 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
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>ag-Grid Angular 2 JIT Example</title>
<base href="/">
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<!-- ag-grid CSS -->
<!-- In your build, you will probably want to include the css in your bundle. -->
<!-- To do this you will use a CSS Loader. How to do this is not an ag-Grid -->
<!-- problem, so I've not included how to do it here. For simplicity, and -->
<!-- explicitness, the CSS files are loaded in directly here. -->
<link href="node_modules/ag-grid/dist/styles/ag-grid.css" rel="stylesheet"/>
<link href="node_modules/ag-grid/dist/styles/theme-fresh.css" rel="stylesheet"/>
<link href="node_modules/bootstrap/dist/css/bootstrap.css" rel="stylesheet"/>
<!-- Configure SystemJS -->
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function (err) {
console.error(err);
});
</script>
</head>
<!-- 3. Display the application -->
<body>
<my-app>Loading...</my-app>
</body>
</html>