mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
* Updates two of the md files to prioritize standalone components/architecture * Updates three examples referenced in the guides * Updates the svg diagram to reference the EnvironmentInjector instead of the ModuleInjector PR Close #51572
5 lines
208 B
TypeScript
Executable file
5 lines
208 B
TypeScript
Executable file
import { bootstrapApplication } from '@angular/platform-browser';
|
|
import { AppComponent } from './app/app.component';
|
|
import appConfig from './app/app.config';
|
|
|
|
bootstrapApplication(AppComponent, appConfig);
|