This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>MyAppShell</title> | |
<base href="/"> | |
<meta name="viewport" content="width=device-width,initial-scale=1"> | |
<link rel="icon" type="image/x-icon" href="favicon.ico"> | |
<link href="styles.d41d8cd98f00b204e980.bundle.css" rel="stylesheet"/> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
"buildOptimizer": true, | |
"serviceWorker": true, | |
"ngswConfigPath": "src/ngsw-config.json", | |
"fileReplacements": [ | |
{ | |
"replace": "src/environments/environment.ts", | |
"with": "src/environments/environment.prod.ts" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {FirebaseApp} from "angularfire2"; | |
@Injectable() | |
export class LessonsService { | |
constructor( @Inject(FirebaseApp) fb) { | |
const rootDbRef = fb.database().ref(); | |
rootDebRef.on('value', snapshot => console.log(snapshot.val())); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<heroes> | |
<hero id="1" name="Superman"></hero> | |
<hero id="2" name="Batman"></hero> | |
<hero id="3" name="Batgirl"></hero> | |
<hero id="3" name="Robin"></hero> | |
<hero id="4" name="Flash"></hero> | |
<hero id="5" name="Green Lantern"></hero> | |
</heroes> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav class="navbar navbar-fixed-top navbar-dark bg-inverse"> | |
<div class="container"> | |
<a class="navbar-brand">Angular Router</a> | |
<ul class="nav navbar-nav" routerLinkActive="active"> | |
<li class="nav-item"><a class="nav-link" routerLink="home">Home</a></li> | |
<li class="nav-item"><a class="nav-link" routerLink="about">About</a></li> | |
<li class="nav-item"><a class="nav-link" routerLink="courses">Courses</a></li> | |
</ul> | |
</div> | |
</nav> |