File: /var/www/vhost/disk-apps/pwa.sports-crowd.com/src/app/pages/wallet/wallet.module.ts
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { TranslateModule } from "@ngx-translate/core";
import { ComponentsModule } from "../../components/components.module";
import { IonicModule } from '@ionic/angular';
import { WalletPageRoutingModule } from './wallet-routing.module';
import { WalletPage } from './wallet.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
WalletPageRoutingModule,
TranslateModule.forChild(),
ComponentsModule
],
declarations: [WalletPage]
})
export class WalletPageModule {}