mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
23 lines
556 B
TypeScript
23 lines
556 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { EventDetailPageRoutingModule } from './event-detail-routing.module';
|
|
|
|
import { EventDetailPage } from './event-detail.page';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
ReactiveFormsModule,
|
|
EventDetailPageRoutingModule
|
|
],
|
|
declarations: [EventDetailPage]
|
|
})
|
|
export class EventDetailPageModule {}
|