import {NgModule} from '@angular/core';
import {RouterModule, Routes} from '@angular/router';
+import {BibByIdentComponent} from './bib-by-ident.component';
const routes: Routes = [
{ path: 'vandelay',
path: 'marcbatch',
loadChildren: () =>
import('./marcbatch/marcbatch.module').then(m => m.MarcBatchModule)
+ }, {
+ path: 'bib-from/:identType',
+ component: BibByIdentComponent
}
];