All checks were successful
Backend Build and Test / build (push) Successful in 2m10s
21 lines
523 B
TypeScript
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 {}
|