Created
October 17, 2022 20:43
-
-
Save MarkTechson/7f154a08d661fede346057dbdf790572 to your computer and use it in GitHub Desktop.
Advancements in the Angular Router Code Example 1
This file contains 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
// Bootstrap the main application component with routing capabilities | |
const appRoutes: Routes = […]; | |
bootstrapApplication(AppComponent, { | |
providers: [ | |
provideRouter(appRoutes), | |
] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment