diff --git a/projects/00-basic-app/src/main.ts b/projects/00-basic-app/src/main.ts index 602c5d5..f6bfe98 100644 --- a/projects/00-basic-app/src/main.ts +++ b/projects/00-basic-app/src/main.ts @@ -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); \ No newline at end of file diff --git a/projects/01-hello-angular/src/app/app.component.ts b/projects/01-hello-angular/src/app/app.component.ts index ec6bfc7..daf6600 100644 --- a/projects/01-hello-angular/src/app/app.component.ts +++ b/projects/01-hello-angular/src/app/app.component.ts @@ -9,6 +9,11 @@ import { RouterOutlet } from '@angular/router'; template: `

If you are reading this...

Things have worked out well! 🎉

+
    +
  1. GOT
  2. +
  3. GOT
  4. +
  5. GOT
  6. +
`, styles: ``, }) diff --git a/projects/01-hello-angular/src/styles.css b/projects/01-hello-angular/src/styles.css index 3d936f6..07b7e02 100644 --- a/projects/01-hello-angular/src/styles.css +++ b/projects/01-hello-angular/src/styles.css @@ -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; } diff --git a/projects/02-displaying-dynamic-data/src/app/app.component.ts b/projects/02-displaying-dynamic-data/src/app/app.component.ts index 44f0d6d..bf18a08 100644 --- a/projects/02-displaying-dynamic-data/src/app/app.component.ts +++ b/projects/02-displaying-dynamic-data/src/app/app.component.ts @@ -7,11 +7,11 @@ import { Component } from '@angular/core';

Bonus Offer - $ + ${{item.price}}

-

-

+

{{item.name}}

+

{{item.description}}

`,