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
+5 -4
View File
@@ -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 { WelcomePageRoutingModule } from './welcome-routing.module';
import { WelcomePage } from './welcome.page';
import { ComponentsModule } from 'src/app/components/components.module';
/* import { ComponentsModule } from 'src/app/components/components.module'; */
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
ComponentsModule,
/* ComponentsModule, */
WelcomePageRoutingModule
],
declarations: [WelcomePage]
declarations: [WelcomePage],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class WelcomePageModule {}