| 71 | |
| 72 | @NgModule({imports: [BrowserModule], declarations: [ComponentFour]}) |
| 73 | export class AppModuleThree implements DoBootstrap { |
| 74 | // #docregion domNode |
| 75 | ngDoBootstrap(appRef: ApplicationRef) { |
| 76 | const element = document.querySelector('#root-element'); |
| 77 | appRef.bootstrap(ComponentFour, element!); |
| 78 | } |
| 79 | // #enddocregion domNode |
| 80 | } |
nothing calls this directly
no outgoing calls
no test coverage detected