angular-hotel-manager/src/app/app.component.html
Jan Klattenhoff 26ea503cbd
All checks were successful
Build / Build and analyze (push) Successful in 1m41s
feat: update hotel service to use observables
2024-10-22 07:31:24 +02:00

7 lines
211 B
HTML

<h1>{{'hello' | uppercase | text}}</h1>
<app-search [(input)]="search"></app-search>
@for (let hotel of foundHotels | async) {
@if (search === "") {
<app-hotel-item [hotel]="hotel"></app-hotel-item>
}
}