| 62 | |
| 63 | @NgModule({imports: [BrowserModule], declarations: [ComponentThree]}) |
| 64 | export class AppModuleTwo implements DoBootstrap { |
| 65 | // #docregion cssSelector |
| 66 | ngDoBootstrap(appRef: ApplicationRef) { |
| 67 | appRef.bootstrap(ComponentThree, '#root-element'); |
| 68 | } |
| 69 | // #enddocregion cssSelector |
| 70 | } |
| 71 | |
| 72 | @NgModule({imports: [BrowserModule], declarations: [ComponentFour]}) |
| 73 | export class AppModuleThree implements DoBootstrap { |
nothing calls this directly
no outgoing calls
no test coverage detected