refactor home to home-page

This commit is contained in:
William Welling
2017-10-04 10:51:48 -05:00
parent f595fda708
commit a9faab6833
14 changed files with 29 additions and 29 deletions

View File

@@ -0,0 +1,13 @@
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { HomePageComponent } from './home-page.component';
@NgModule({
imports: [
RouterModule.forChild([
{ path: '', component: HomePageComponent, pathMatch: 'full' }
])
]
})
export class HomePageRoutingModule { }