]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/acq/routing.module.ts
LP#1850547: Angular Acquistions Search
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / acq / routing.module.ts
1 import {NgModule} from '@angular/core';
2 import {RouterModule, Routes} from '@angular/router';
3
4 const routes: Routes = [
5   { path: 'search',
6     loadChildren: () =>
7       import('./search/acq-search.module').then(m => m.AcqSearchModule)
8   }
9 ];
10
11 @NgModule({
12   imports: [RouterModule.forChild(routes)],
13   exports: [RouterModule]
14 })
15
16 export class AcqRoutingModule {}