mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
29 lines
815 B
TypeScript
29 lines
815 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';
|
|
|
|
import { HeaderPageModule } from 'src/app/shared/header/header.module';
|
|
import { BtnModalDismissPageModule } from 'src/app/shared/btn-modal-dismiss/btn-modal-dismiss.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
|
|
EventListPageRoutingModule,
|
|
HeaderPageModule,
|
|
BtnModalDismissPageModule,
|
|
],
|
|
declarations: [EventListPage],
|
|
exports: [EventListPage]
|
|
})
|
|
export class EventListPageModule {}
|