Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions projects/00-basic-app/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { AppComponent } from './app/app.component';

bootstrapApplication(AppComponent, appConfig);
5 changes: 5 additions & 0 deletions projects/01-hello-angular/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ import { RouterOutlet } from '@angular/router';
template: `
<h1>If you are reading this...</h1>
<p>Things have worked out well! 🎉</p>
<ol>
<li>GOT</li>
<li>GOT</li>
<li>GOT</li>
</ol>
`,
styles: ``,
})
Expand Down
1 change: 1 addition & 0 deletions projects/01-hello-angular/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";
list-style-type: upper-roman;
}
6 changes: 3 additions & 3 deletions projects/02-displaying-dynamic-data/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import { Component } from '@angular/core';
<article class="offer">
<h1>
<span>Bonus Offer</span>
<span>&dollar;<!-- ITEM PRICE --></span>
<span>&dollar;{{item.price}}</span>
</h1>
<img src="/assets/noun-product-6277512.png" width="400" />
<p><!-- ITEM NAME--></p>
<p><!-- ITEM DESCRIPTION --></p>
<p>{{item.name}}</p>
<p>{{item.description}}</p>
<button>Order Now</button>
</article>
`,
Expand Down