Attendees funcionality.

This commit is contained in:
Paulo Pinto
2020-08-26 09:42:16 +01:00
parent fcbdcab219
commit 9ba1802bed
10 changed files with 116 additions and 56 deletions
-1
View File
@@ -2,7 +2,6 @@ import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { HomePage } from './home.page';
import { EventsPage } from '../pages/events/events.page';
const routes: Routes = [
{
+4 -1
View File
@@ -7,13 +7,16 @@ import { IonicModule } from '@ionic/angular';
import { HomePageRoutingModule } from './home-routing.module';
import { HomePage } from './home.page';
import { IonicSelectableModule } from 'ionic-selectable';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
HomePageRoutingModule
HomePageRoutingModule,
IonicSelectableModule
],
declarations: [HomePage]
})