react-native-web
Version:
React Native for Web
28 lines (22 loc) • 621 B
JavaScript
/**
* Copyright (c) Nicolas Gallagher.
* 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.
*
* @noflow
*/
import { findDOMNode } from 'react-dom';
/**
* @deprecated imperatively finding the DOM element of a react component has been deprecated in React 18.
* You should use ref properties on the component instead.
*/
const findNodeHandle = (component) => {
let node;
try {
node = findDOMNode(component);
} catch (e) {}
return node;
};
export default findNodeHandle;