Skip to content
This repository was archived by the owner on Dec 17, 2022. It is now read-only.

Commit 7f199ff

Browse files
✨ using hw component
1 parent c4a21b2 commit 7f199ff

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

app/app.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
'use strict';
22

3-
const beerApi = angular.module('angularSkeleton', []);
3+
const beerApi = angular.module('angularSkeleton', [
4+
'hw'
5+
]);

app/index.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!doctype html>
2-
<html lang="en">
2+
<html lang="en" ng-app="angularSkeleton">
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport"
@@ -10,8 +10,11 @@
1010
<script src="lib/angular/angular.js"></script>
1111
<script src="app.js"></script>
1212
<script src="app.module.js"></script>
13+
14+
<script src="hw/hw.module.js"></script>
15+
<script src="hw/hw.component.js"></script>
1316
</head>
1417
<body>
15-
<p>Hello, world!</p>
18+
<hw></hw>
1619
</body>
1720
</html>

package-lock.json

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)