angular/aio/content/examples/resolution-modifiers/src/main.ts
Mark Thompson 63b8108f66 docs: add revamped guide for dependency injection focused on standalone (#51572)
* 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
2023-09-14 11:23:48 +02:00

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);