mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/42826 yungsters debugged the failing test library import and found that we don't yet support package exports. Switching this to main with an index file allows us to import the library in other places. Changelog: [internal] Reviewed By: yungsters Differential Revision: D53240712 fbshipit-source-id: 046a7d1678cbca181e4a4de607a9c0e7490ef047
15 lines
346 B
JavaScript
15 lines
346 B
JavaScript
/**
|
|
* 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
|
|
* @oncall react_native
|
|
*/
|
|
|
|
export {render} from './renderer/index.js';
|
|
|
|
export {ReactNativeEnvironment} from './jest/environment.js';
|