@@ -42,12 +42,14 @@ Open `/src/app/app.component.ts`, and make the following changes to :
42
42
43
43
``` ts
44
44
import { Component , inject } from ' @angular/core' ;
45
+ import { AsyncPipe } from ' @angular/common' ;
45
46
import { Firestore } from ' @angular/fire/firestore' ;
46
47
47
48
@Component ({
48
49
selector: ' app-root' ,
49
50
templateUrl: ' app.component.html' ,
50
- styleUrls: [' app.component.css' ]
51
+ styleUrls: [' app.component.css' ],
52
+ imports: [AsyncPipe ],
51
53
})
52
54
export class AppComponent {
53
55
firestore: Firestore = inject (Firestore );
@@ -64,11 +66,14 @@ In `/src/app/app.component.ts`:
64
66
65
67
``` ts
66
68
import { Component , inject } from ' @angular/core' ;
67
- import { Firestore , collection , collectionData } from ' @angular/fire/firestore ' ;
69
+ import { AsyncPipe } from ' @angular/common ' ;
68
70
import { Observable } from ' rxjs' ;
71
+ import { Firestore , collection , collectionData } from ' @angular/fire/firestore' ;
69
72
70
73
@Component ({
71
74
selector: ' app-root' ,
75
+ standalone: true ,
76
+ imports: [AsyncPipe ],
72
77
templateUrl: ' app.component.html' ,
73
78
styleUrls: [' app.component.css' ]
74
79
})
@@ -87,9 +92,9 @@ Open `/src/app/app.component.html`:
87
92
88
93
``` html
89
94
<ul >
90
- < li class = " text " *ngFor = " let item of items$ | async" >
91
- {{ item.name}}
92
- </ li >
95
+ @for ( item of items$ | async; track item) {
96
+ < li >{{ item.name }}</ li >
97
+ }
93
98
</ul >
94
99
```
95
100
0 commit comments