Huffle c95a9cfbf8
All checks were successful
Backend Build and Test / build (push) Successful in 2m10s
add navigation to add allowance page
2025-05-25 18:05:40 +02:00

21 lines
523 B
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } 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
],
declarations: [EditAllowancePage]
})
export class EditAllowancePageModule {}