refactor(demo): rename basic inputs page

This commit is contained in:
Ken Sodemann
2017-11-17 20:29:25 -06:00
parent 3709e39292
commit 0134d11245
11 changed files with 36 additions and 36 deletions

View File

@ -3,7 +3,7 @@ import { Routes, RouterModule } from '@angular/router';
const routes: Routes = [
{ path: '', redirectTo: '/home', pathMatch: 'full' },
{ path: 'inputs', loadChildren: 'app/inputs/inputs.module#InputsModule' },
{ path: 'basic-inputs', loadChildren: 'app/basic-inputs/basic-inputs.module#BasicInputsModule' },
{ path: 'home', loadChildren: 'app/home/home.module#HomeModule' }
];