From 0e31dd028e8032ef433aea87268a5fd41cfb66a4 Mon Sep 17 00:00:00 2001 From: Jan Kassens Date: Fri, 13 Jan 2023 16:27:03 -0500 Subject: [PATCH] Remove findDOMNode www shim (#25998) This shim is no longer needed on www, in fact I had already deleted it there and it's currently not on www. See D42503692 which is trying to add it back as I didn't realize this file was synced from GitHub. --- scripts/rollup/shims/facebook-www/findDOMNode.js | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 scripts/rollup/shims/facebook-www/findDOMNode.js diff --git a/scripts/rollup/shims/facebook-www/findDOMNode.js b/scripts/rollup/shims/facebook-www/findDOMNode.js deleted file mode 100644 index aff981f104651..0000000000000 --- a/scripts/rollup/shims/facebook-www/findDOMNode.js +++ /dev/null @@ -1,15 +0,0 @@ -/** - * 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 - */ - -'use strict'; - -const {findDOMNode} = require('ReactDOM'); - -module.exports = findDOMNode;