mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
25 lines
619 B
TypeScript
25 lines
619 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { EditEventPageRoutingModule } from './edit-event-routing.module';
|
|
|
|
import { EditEventPage } from './edit-event.page';
|
|
import { AttendeeModalPage } from 'src/app/shared/event/attendee-modal/attendee-modal.page';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
EditEventPageRoutingModule
|
|
],
|
|
declarations: [
|
|
EditEventPage,
|
|
AttendeeModalPage
|
|
]
|
|
})
|
|
export class EditEventPageModule {}
|