mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 04:01:58 +00:00
20 lines
478 B
TypeScript
20 lines
478 B
TypeScript
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 {}
|