Files
dspace-angular/src/app/+community-page/community-page-routing.module.ts
2017-09-26 11:44:07 -05:00

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 { }