Regenerate components

This commit is contained in:
Peter Maquiran
2021-06-03 14:10:16 +01:00
parent f2f45b3d98
commit 014d85b16e
25 changed files with 278 additions and 269 deletions
@@ -0,0 +1,20 @@
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';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
EventListPageRoutingModule
],
declarations: [EventListPage]
})
export class EventListPageModule {}