Is it necessary to bootstrap each component individually in this code snippet?
import { bootstrap } from '@angular/platform-browser-dynamic';
import { AppComponent1 } from './app.component1';
import { AppComponent2 } from './app.component2';
bootstrap(AppComponent1)
bootstrap(AppComponent2)