mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-10 03:23:07 +00:00
14 lines
348 B
TypeScript
14 lines
348 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { CommunityPageComponent } from './community-page.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forChild([
|
|
{ path: ':id', component: CommunityPageComponent, pathMatch: 'full' }
|
|
])
|
|
]
|
|
})
|
|
export class CommunityPageRoutingModule { }
|