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
+3 -38
View File
@@ -1,44 +1,9 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { Component } from '@angular/core';
/*
import { SlidesComponent } from './slides/slides.component';
import { StartComponent } from './start/start.component';
import { LogoComponent } from './logo/logo.component';
import { CustomHeaderComponent } from './custom-header/custom-header.component';
import { EventComponent } from './event/event.component';
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { EventComponent } from './event/event.component'; */
@NgModule({
declarations: [
SlidesComponent,
StartComponent,
LogoComponent,
CustomHeaderComponent,
EventComponent
],
exports: [
/* Exportar para o acesso de outros componentes e páginas na aplicação*/
SlidesComponent,
StartComponent,
LogoComponent,
CustomHeaderComponent,
EventComponent,
Component
],
imports: [
CommonModule,
FormsModule,
IonicModule
],
schemas: [
CUSTOM_ELEMENTS_SCHEMA
]
})
export class ComponentsModule { }