(
_text: string,
_rootContainerInstance: Container,
_hostContext: HostContext
// @ts-ignore
)
| 63 | log.debug("createInstance"); |
| 64 | return createElement(type, props); |
| 65 | }, |
| 66 | |
| 67 | appendInitialChild(parentInstance: Instance, child: Instance | TextInstance): void { |
| 68 | log.debug("appendInitialChild"); |
| 69 | parentInstance.appendChild(child); |
| 70 | }, |
| 71 | |
| 72 | finalizeInitialChildren( |
| 73 | _parentInstance: Instance, |
| 74 | _type: Type, |
| 75 | _props: Props, |
nothing calls this directly
no outgoing calls
no test coverage detected