-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 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
27
28
<!DOCTYPE html>
<html lang="en" ng-app="shoppingcart">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<app></app>
<script src="angular.js"></script>
<script src="angular-ui-router.js"></script>
<script src="src/shared/shared.module.js"></script>
<script src="src/product/product.module.js"></script>
<script src="src/cart/cart.module.js"></script>
<script src="src/app.module.js"></script>
<script src="src/app.component.js"></script>
<script src="src/app.constant.js"></script>
<script src="src/product/product.service.js"></script>
<script src="src/cart/components/cart/cart.component.js"></script>
<script src="src/product/components/product-list/product-list.component.js"></script>
<script src="src/product/components/add-product/add-product.component.js"></script>
<script src="src/product/components/product-details/product-details.component.js"></script>
</body>
</html>