Created
May 19, 2019 13:19
-
-
Save daretodave/6b890f461753ccc5e6fa7b0099105adb to your computer and use it in GitHub Desktop.
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
const routes = //.....\\\\ | |
@NgModule({ | |
declarations: [ | |
AllComponentsThatPersistAlways | |
], | |
imports: [BrowserModule, FormsModule, HttpModule, RouterModule.forRoot(routes)], | |
providers: [ | |
{ | |
provide: RouteReuseStrategy, | |
useClass: CustomRouteReuseStrategy | |
} | |
], | |
bootstrap: [AppComponent] | |
}) | |
export class PesdyoModule { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment