Angular - Fundamentals
Given this code snippet, what will Angular do when bootstrapping?
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
bootstrapApplication(AppComponent);