mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-10 11:33:04 +00:00
fixed core and shared module usage, lazy loading modules
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule } from '@angular/router';
|
||||
|
||||
import { ItemPageComponent } from './simple/item-page.component';
|
||||
import { FullItemPageComponent } from './full/full-item-page.component';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
RouterModule.forChild([
|
||||
{ path: 'items/:id', pathMatch: 'full', component: ItemPageComponent },
|
||||
{ path: 'items/:id/full', component: FullItemPageComponent },
|
||||
])
|
||||
]
|
||||
})
|
||||
export class ItemPageRoutingModule {
|
||||
}
|
Reference in New Issue
Block a user