#89 added community home page

This commit is contained in:
Christian Scheible
2017-06-09 15:04:48 +02:00
parent d4b7f5f9ce
commit 48c3cb4e46
29 changed files with 250 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { CommunityPageComponent } from './community-page.component';
@NgModule({
imports: [
RouterModule.forChild([
{ path: 'communities/:id', component: CommunityPageComponent }
])
]
})
export class CommunityPageRoutingModule { }