Skip to content

Commit 98ebc14

Browse files
author
Adarsh Maurya
committed
- updating AppComponent
1 parent 2086603 commit 98ebc14

File tree

7 files changed

+192
-215
lines changed

7 files changed

+192
-215
lines changed

APM-Final/src/favicon.ico

100755100644
-154 KB
Binary file not shown.

APM-Start/favicon.ico

Whitespace-only changes.

APM-Start/package-lock.json

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

APM-Start/package.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,27 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14-
"@angular/animations": "~7.0.0",
15-
"@angular/common": "~7.0.0",
16-
"@angular/compiler": "~7.0.0",
17-
"@angular/core": "~7.0.0",
18-
"@angular/forms": "~7.0.0",
19-
"@angular/http": "~7.0.0",
20-
"@angular/platform-browser": "~7.0.0",
21-
"@angular/platform-browser-dynamic": "~7.0.0",
22-
"@angular/router": "~7.0.0",
23-
"core-js": "^2.5.4",
14+
"@angular/animations": "^7.0.4",
15+
"@angular/common": "^7.0.4",
16+
"@angular/compiler": "^7.0.4",
17+
"@angular/core": "^7.0.4",
18+
"@angular/forms": "^7.0.4",
19+
"@angular/http": "^7.0.4",
20+
"@angular/platform-browser": "^7.0.4",
21+
"@angular/platform-browser-dynamic": "^7.0.4",
22+
"@angular/router": "^7.0.4",
23+
"core-js": "^2.6.0",
2424
"rxjs": "~6.3.3",
2525
"zone.js": "~0.8.26"
2626
},
2727
"devDependencies": {
28-
"@angular-devkit/build-angular": "~0.10.0",
29-
"@angular/cli": "~7.0.3",
30-
"@angular/compiler-cli": "~7.0.0",
31-
"@angular/language-service": "~7.0.0",
28+
"@angular-devkit/build-angular": "^0.10.7",
29+
"@angular/cli": "^7.0.7",
30+
"@angular/compiler-cli": "^7.0.4",
31+
"@angular/language-service": "^7.0.4",
32+
"@types/jasmine": "^2.8.12",
33+
"@types/jasminewd2": "^2.0.6",
3234
"@types/node": "~8.9.4",
33-
"@types/jasmine": "~2.8.8",
34-
"@types/jasminewd2": "~2.0.3",
3535
"codelyzer": "~4.5.0",
3636
"jasmine-core": "~2.99.1",
3737
"jasmine-spec-reporter": "~4.2.1",

APM-Start/src/app/app.component.ts

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
import { Component } from '@angular/core';
1+
import { Component } from "@angular/core";
22

33
@Component({
44
selector: 'pm-root',
5-
templateUrl: './app.component.html',
6-
styleUrls: ['./app.component.css']
5+
template: `
6+
<div><h1>{{pageTitle}}</h1>
7+
<div>My First Component</div>
8+
</div>
9+
`
10+
711
})
812
export class AppComponent {
9-
title = 'Angular: Getting Started';
10-
}
13+
pageTitle: string = 'Softhinkers Product Management';
14+
}

APM-Start/src/favicon.ico

100755100644
-154 KB
Binary file not shown.

APM-Start/src/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8">
5-
<title>APM</title>
5+
<title>Softhinkers</title>
66
<base href="/">
77

88
<meta name="viewport" content="width=device-width, initial-scale=1">

0 commit comments

Comments
 (0)