22 lines
569 B
TypeScript
22 lines
569 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { EditAllowancePageRoutingModule } from './edit-allowance-routing.module';
|
|
|
|
import { EditAllowancePage } from './edit-allowance.page';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
EditAllowancePageRoutingModule,
|
|
ReactiveFormsModule
|
|
],
|
|
declarations: [EditAllowancePage]
|
|
})
|
|
export class EditAllowancePageModule {}
|