mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 14:03:06 +00:00
14 lines
345 B
TypeScript
14 lines
345 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { CollectionPageComponent } from './collection-page.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forChild([
|
|
{ path: 'collections/:id', component: CollectionPageComponent }
|
|
])
|
|
]
|
|
})
|
|
export class CollectionPageRoutingModule { }
|