Recreate modal

This commit is contained in:
Peter Maquiran
2021-06-03 11:44:32 +01:00
parent 878279bb78
commit 646172eb93
8 changed files with 268 additions and 449 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 { NewEventPageRoutingModule } from './new-event-routing.module';
import { NewEventPage } from './new-event.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
NewEventPageRoutingModule
],
declarations: [NewEventPage]
})
export class NewEventPageModule {}