Made lots of changes, deleted all components

This commit is contained in:
Tiago Kayaya
2020-08-13 17:44:57 +01:00
parent 03396567df
commit 98240c2581
179 changed files with 2617 additions and 588 deletions
@@ -1,4 +1,4 @@
import { NgModule } from '@angular/core';
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
@@ -7,16 +7,17 @@ import { IonicModule } from '@ionic/angular';
import { ViewEventPageRoutingModule } from './view-event-routing.module';
import { ViewEventPage } from './view-event.page';
import { ComponentsModule } from 'src/app/components/components.module';
/* import { ComponentsModule } from 'src/app/components/components.module'; */
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
ComponentsModule,
/* ComponentsModule, */
ViewEventPageRoutingModule
],
declarations: [ViewEventPage]
declarations: [ViewEventPage],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class ViewEventPageModule {}