mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 12:34:17 +00:00
94c565a2c4
Reviewed By: trueadm Differential Revision: D5013497 fbshipit-source-id: 1e23b08751b8b6e2dd570ff584c815c8a9b8f35f
31 lines
840 B
JavaScript
31 lines
840 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule ReactNative
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
const ReactNativeFeatureFlags = require('ReactNativeFeatureFlags');
|
|
|
|
import type {ReactNativeType} from 'ReactNativeTypes';
|
|
|
|
let ReactNative;
|
|
|
|
if (__DEV__) {
|
|
ReactNative = ReactNativeFeatureFlags.useFiber
|
|
? require('ReactNativeFiber-dev')
|
|
: require('ReactNativeStack-dev');
|
|
} else {
|
|
ReactNative = ReactNativeFeatureFlags.useFiber
|
|
? require('ReactNativeFiber-prod')
|
|
: require('ReactNativeStack-prod');
|
|
}
|
|
|
|
module.exports = (ReactNative: ReactNativeType);
|