Improve search page

This commit is contained in:
Peter Maquiran
2021-01-16 17:45:09 +01:00
parent cde236d4ca
commit 8c4fea8c92
11 changed files with 176 additions and 45 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { SenderPage } from './sender.page';
const routes: Routes = [
{
path: '',
component: SenderPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class SenderPageRoutingModule {}