24 lines
637 B
TypeScript
24 lines
637 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { AddAllowancePageRoutingModule } from './add-allowance-routing.module';
|
|
|
|
import { AddAllowancePage } from './add-allowance.page';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
AddAllowancePageRoutingModule,
|
|
ReactiveFormsModule,
|
|
MatIconModule
|
|
],
|
|
declarations: [AddAllowancePage]
|
|
})
|
|
export class AddAllowancePageModule {}
|