Angular - Fundamentals
What will Angular do when executing the following bootstrap code?
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
bootstrapApplication(AppComponent);
