add new owner feature uncompleted

This commit is contained in:
tiago.kayaya
2022-01-24 19:09:26 +01:00
parent e65b91ab08
commit c6ec2abc1f
11 changed files with 659 additions and 261 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { SetRoomOwnerPage } from './set-room-owner.page';
const routes: Routes = [
{
path: '',
component: SetRoomOwnerPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class SetRoomOwnerPageRoutingModule {}