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,19 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { IonicModule } from '@ionic/angular';
import { FormsModule } from '@angular/forms';
import { RecoverPage } from './recover.page';
import { RecoverPageRoutingModule } from './recover-routing.module';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
RecoverPageRoutingModule
],
declarations: [RecoverPage]
})
export class RecoverPageModule {}