Files
start-os/setup-wizard/src/app/app.component.html
2022-01-21 20:35:52 -07:00

12 lines
337 B
HTML

<ion-app>
<ion-content *ngIf="stateService.loading; else loaded">
<h2 color="light">Connecting to Embassy</h2>
</ion-content>
<ng-template #loaded>
<ion-content *ngIf="error">
<h2 color="light">{{ error }}</h2>
</ion-content>
<ion-router-outlet *ngIf="!error"></ion-router-outlet>
</ng-template>
</ion-app>