mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
23 lines
574 B
TypeScript
23 lines
574 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { EventListPageRoutingModule } from './event-list-routing.module';
|
|
|
|
import { EventListPage } from './event-list.page';
|
|
import { SharedModule } from 'src/app/shared/shared.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
SharedModule,
|
|
EventListPageRoutingModule
|
|
],
|
|
declarations: [EventListPage]
|
|
})
|
|
export class EventListPageModule {}
|