This repository has been archived on 2025-04-26. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
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>
}
}