Improve search page

This commit is contained in:
Peter Maquiran
2021-01-19 16:44:39 +01:00
parent 4a5395be94
commit d2fc8338b3
20 changed files with 421 additions and 101 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { OrganicEntityPage } from './organic-entity.page';
const routes: Routes = [
{
path: '',
component: OrganicEntityPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class OrganicEntityPageRoutingModule {}