Assignment #9 Working with the Root Component Open a command Prompt to the C:\Humor folder and run: ng serve Then open a Browser to: http://localhost:4200 to see the application run In Angular we have the following Boot Flow: 1) in the C:\Humor\angular.json file it lists "index" : "src/index.html" <= the name of the single HTML file for the application "main" : "src/main.ts" <= the "startup" code 2) In the src/main.ts file it imports the AppModule from ./app/app.module (the .ts is implied) and lists the bootstrapModule as AppModule 3) In the src/app/app.module.ts file it imports the AppComponent from ./app.component and also lists this component in the bootstrap array 4) In the src/index.html it has this code: