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/50426 Prepares [platform-specific extensions](https://reactnative.dev/docs/platform-specific-code) compatibility for subpath imports ahead of D72228547 (`"exports"` field reattempt). Changelog: [Internal] Reviewed By: robhogan Differential Revision: D72235790 fbshipit-source-id: 8e76999c632460fdc4795d56e19db75f327ea126
18 lines
527 B
JavaScript
18 lines
527 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 strict-local
|
|
* @format
|
|
*/
|
|
|
|
// NOTE: This file supports backwards compatibility of subpath (deep) imports
|
|
// from 'react-native' with platform-specific extensions. It can be deleted
|
|
// once we remove the "./*" mapping from package.json "exports".
|
|
|
|
import BaseViewConfig from './BaseViewConfig';
|
|
|
|
export default BaseViewConfig;
|