UNPKG

react-native

Version:

A framework for building native apps using React

33 lines (25 loc) 709 B
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow * @format */ import type { HostComponent, HostInstance, } from '../Renderer/shims/ReactNativeTypes'; import * as React from 'react'; function takesHostComponentInstance(instance: HostInstance | null): void {} const MyHostComponent = (('Host': any): HostComponent<{...}>); <MyHostComponent ref={hostComponentRef => { takesHostComponentInstance(hostComponentRef); if (hostComponentRef == null) { return; } hostComponentRef.measureLayout(hostComponentRef, () => {}); }} />;