This commit is contained in:
Drew Ansbacher
2021-06-30 16:54:27 -06:00
committed by Aiden McClelland
parent fbcf4cacdb
commit b761c3dabd
16 changed files with 178 additions and 217 deletions

View File

@@ -3,6 +3,7 @@ import { CommonModule } from '@angular/common';
import { IonicModule } from '@ionic/angular';
import { FormsModule } from '@angular/forms';
import { HomePage } from './home.page';
import { PasswordPageModule } from '../password/password.module';
import { HomePageRoutingModule } from './home-routing.module';
@@ -12,7 +13,8 @@ import { HomePageRoutingModule } from './home-routing.module';
CommonModule,
FormsModule,
IonicModule,
HomePageRoutingModule
HomePageRoutingModule,
PasswordPageModule,
],
declarations: [HomePage]
})