2021-07-28 09:29:14 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { ProfilePageRoutingModule } from './profile-routing.module';
|
|
|
|
|
|
|
|
|
|
import { ProfilePage } from './profile.page';
|
2024-12-05 19:14:11 +01:00
|
|
|
import { UserModule } from 'src/app/module/user/user.module';
|
2021-07-28 09:29:14 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2024-12-05 19:14:11 +01:00
|
|
|
ProfilePageRoutingModule,
|
|
|
|
|
//
|
|
|
|
|
UserModule
|
2021-07-28 09:29:14 +01:00
|
|
|
],
|
|
|
|
|
declarations: [ProfilePage]
|
|
|
|
|
})
|
|
|
|
|
export class ProfilePageModule {}
|