diff --git a/packages/react/index.fb.js b/packages/react/index.fb.js deleted file mode 100644 index 2c1a4ec79b78d..0000000000000 --- a/packages/react/index.fb.js +++ /dev/null @@ -1,14 +0,0 @@ -/** - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -'use strict'; - -const ReactFB = require('./src/ReactFB'); - -// TODO: decide on the top-level export form. -// This is hacky but makes it work with both Rollup and Jest. -module.exports = ReactFB.default || ReactFB; diff --git a/packages/react/src/ReactFB.js b/packages/react/src/ReactFB.js deleted file mode 100644 index 9c4f974010259..0000000000000 --- a/packages/react/src/ReactFB.js +++ /dev/null @@ -1,15 +0,0 @@ -/** - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - * - * @flow - */ - -import React from './React'; - -// TODO: Temporary alias until we update the callers downstream. -React.unstable_SuspenseList = React.SuspenseList; - -export default React;