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

Commit

Permalink
✨ using hw component
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigmanificient committed Nov 22, 2021
1 parent c4a21b2 commit 7f199ff
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion app/app.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

const beerApi = angular.module('angularSkeleton', []);
const beerApi = angular.module('angularSkeleton', [
'hw'
]);
7 changes: 5 additions & 2 deletions app/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html lang="en">
<html lang="en" ng-app="angularSkeleton">
<head>
<meta charset="UTF-8">
<meta name="viewport"
Expand All @@ -10,8 +10,11 @@
<script src="lib/angular/angular.js"></script>
<script src="app.js"></script>
<script src="app.module.js"></script>

<script src="hw/hw.module.js"></script>
<script src="hw/hw.component.js"></script>
</head>
<body>
<p>Hello, world!</p>
<hw></hw>
</body>
</html>
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7f199ff

Please sign in to comment.