setup wizard first draft

This commit is contained in:
Drew Ansbacher
2021-06-29 17:02:11 -06:00
committed by Aiden McClelland
parent ce514646ff
commit b31d15bac5
43 changed files with 33533 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<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>