27 lines
761 B
TypeScript
27 lines
761 B
TypeScript
import { IonicModule } from '@ionic/angular';
|
|
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { AllowancePage } from './allowance.page';
|
|
|
|
import { AllowancePageRoutingModule } from './allowance-routing.module';
|
|
import { AllowanceService } from 'src/app/services/allowance.service';
|
|
import { provideHttpClient } from '@angular/common/http';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
IonicModule,
|
|
CommonModule,
|
|
FormsModule,
|
|
AllowancePageRoutingModule,
|
|
MatIconModule
|
|
],
|
|
declarations: [AllowancePage],
|
|
providers: [
|
|
provideHttpClient(),
|
|
AllowanceService
|
|
]
|
|
})
|
|
export class AllowancePageModule {}
|