mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
835b0169b6
Edit event
21 lines
546 B
TypeScript
21 lines
546 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { EventDetailModalPageRoutingModule } from './event-detail-modal-routing.module';
|
|
|
|
import { EventDetailModalPage } from './event-detail-modal.page';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
EventDetailModalPageRoutingModule
|
|
],
|
|
declarations: [EventDetailModalPage]
|
|
})
|
|
export class EventDetailModalPageModule {}
|