This commit is contained in:
tiago.kayaya
2021-06-03 10:41:25 +01:00
parent 462a68fce4
commit 6ab7e3dc03
15 changed files with 45 additions and 59 deletions
@@ -1,4 +1,4 @@
import { NgModule } from '@angular/core';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
@@ -6,18 +6,20 @@ import { IonicModule } from '@ionic/angular';
import { EditEventToApproveComponentRoutingModule } from './edit-event-routing.module';
import { EditEventToApproveComponent } from './edit-event.page';
import { AttendeeModalPage } from 'src/app/shared/event/attendee-modal/attendee-modal.page';
import { ComponentsModule } from 'src/app/components/components.module';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
ComponentsModule,
EditEventToApproveComponentRoutingModule
],
declarations: [
EditEventToApproveComponent
]
],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class EditEventToApproveComponentModule {}