mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 20:43:41 +00:00
* new flow and endpoints * functional * prod build errors addressed * little more cleanup * transfer progress fixed * tor address fix * remove eslint cause sucks * fix skeleton text color and wording Co-authored-by: Matt Hill <matthewonthemoon@gmail.com> Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com>
20 lines
482 B
TypeScript
20 lines
482 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import { FormsModule } from '@angular/forms'
|
|
import { PasswordPage } from './password.page'
|
|
|
|
import { PasswordPageRoutingModule } from './password-routing.module'
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
PasswordPageRoutingModule,
|
|
],
|
|
declarations: [PasswordPage],
|
|
})
|
|
export class PasswordPageModule { }
|