Guest User

Untitled

a guest
Nov 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. import { NgModule } from '@angular/core';
  2. import { Routes, RouterModule } from '@angular/router';
  3.  
  4. const routes: Routes = [{
  5. path: 'install',
  6. loadChildren: './install/install.module#InstallModule',
  7. }];
  8.  
  9. @NgModule({
  10. imports: [RouterModule.forRoot(routes)],
  11. exports: [RouterModule]
  12. })
  13. export class AppRoutingModule { }
Add Comment
Please, Sign In to add comment