(
text: string,
_rootContainerInstance: Container,
_hostContext: HostContext
)
| 65 | log.debug("createInstance"); |
| 66 | return createElement(type, props); |
| 67 | }, |
| 68 | |
| 69 | appendInitialChild(parentInstance: Instance, child: Instance | TextInstance): void { |
| 70 | log.debug("appendInitialChild"); |
| 71 | parentInstance.appendChild(child); |
| 72 | }, |
| 73 | |
| 74 | finalizeInitialChildren( |
| 75 | _parentInstance: Instance, |
| 76 | _type: Type, |
| 77 | _props: Props, |
| 78 | _rootContainerInstance: Container, |
| 79 | _hostContext: HostContext, |
nothing calls this directly
no test coverage detected