Change component name

This commit is contained in:
Peter Maquiran
2021-06-15 15:28:03 +01:00
parent c856cc2927
commit 57c35ca3ff
21 changed files with 38 additions and 43 deletions
@@ -1,12 +1,12 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { AttendeesPage } from './attendees.page';
import { AttendeesPageModal } from './attendees.page';
const routes: Routes = [
{
path: '',
component: AttendeesPage
component: AttendeesPageModal
}
];