mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
076b614488
- add view-event page - add edit-event page
21 lines
495 B
TypeScript
21 lines
495 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';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
EditEventPageRoutingModule
|
|
],
|
|
declarations: [EditEventPage]
|
|
})
|
|
export class EditEventPageModule {}
|