* Bootstrap a component onto the element identified by its selector or, optionally, to a * specified element. * * @usageNotes * ### Bootstrap process * * When bootstrapping a component, Angular mounts it onto a target DOM element * and kicks off automatic change detection. The t
(component: Type<C>, rootSelectorOrNode?: string | any)
| 446 | * {@example core/ts/platform/platform.ts region='domNode'} |
| 447 | */ |
| 448 | bootstrap<C>(component: Type<C>, rootSelectorOrNode?: string | any): ComponentRef<C> { |
| 449 | return this.bootstrapImpl(component, rootSelectorOrNode); |
| 450 | } |
| 451 | |
| 452 | private bootstrapImpl<C>( |
| 453 | component: Type<C>, |
no test coverage detected