Last active
September 24, 2019 22:37
-
-
Save buildmotion/8ebe0698a9e34828a91504aacad9f48b to your computer and use it in GitHub Desktop.
AppRoutingModule-initial-lazy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NgModule } from '@angular/core'; | |
import { CommonModule } from '@angular/common'; | |
import { RouterModule, Routes } from '@angular/router'; | |
const routes: Routes = [ | |
{ | |
// lazy-load the library application here; | |
} | |
]; | |
@NgModule({ | |
declarations: [], | |
imports: [ | |
CommonModule, | |
RouterModule.forRoot(routes) | |
] | |
}) | |
export class AppRoutingModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment