10 lines
440 B
HTML
10 lines
440 B
HTML
<app-search-input></app-search-input>
|
|
<h2>Explore the world</h2>
|
|
<div *ngIf="!loading && !message" class="region-container">
|
|
<span *ngIf="!regions || regions.length === 0">No regions to explore :/</span>
|
|
<app-region (click)="onRegionClick(region)" *ngFor="let region of regions" [region]="region"></app-region>
|
|
</div>
|
|
<mat-spinner *ngIf="loading" class="central"></mat-spinner>
|
|
<span *ngIf="message" class="central">{{message}}</span>
|
|
|