]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/local/shelving_location_groups/shelving_location_groups_routing.module.ts
LP2045292 Color contrast for AngularJS patron bills
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / admin / local / shelving_location_groups / shelving_location_groups_routing.module.ts
1 import {NgModule} from '@angular/core';
2 import {RouterModule, Routes} from '@angular/router';
3 import {ShelvingLocationGroupsComponent} from './shelving_location_groups.component';
4
5 const routes: Routes = [{
6     path: '',
7     component: ShelvingLocationGroupsComponent
8 }];
9
10 @NgModule({
11     imports: [RouterModule.forChild(routes)],
12     exports: [RouterModule]
13 })
14
15 export class ShelvingLocationGroupsRoutingModule {}