| 90 | class RootComponent {} |
| 91 | |
| 92 | @NgModule({ |
| 93 | declarations: [RootComponent, ReactiveFormsComponent], |
| 94 | imports: [BrowserModule, ReactiveFormsModule], |
| 95 | }) |
| 96 | class FormsExampleModule { |
| 97 | ngDoBootstrap(app: any) { |
| 98 | app.bootstrap(RootComponent); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | function bootstrapApp() { |
| 103 | return platformBrowser().bootstrapModule(FormsExampleModule, {ngZone: 'noop'}); |
nothing calls this directly
no test coverage detected