Similar to an Angular application, we have an app folder that contains all our application-specific and Angular startup files:
- We have main.ts, which acts as a bootstrap file similar to the one in the Angular application.
- The main.ts file bootstraps the app.module file, which will contain the NgModule.
- We have an app.routing file, where we will define our routes for the application. The default application already has some routing for the item component.
- Then we have our main component, app.component, which has an associated template.
- The app.component template right now just contains a page-router-outlet tag. This tag is similar to the router-outlet tag that we used in our Angular application. page-router-outlet is just a ...