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