mirror of
https://github.com/status-im/react-native.git
synced 2025-01-17 04:50:59 +00:00
0125813f21
Reviewed By: sebmarkbage Differential Revision: D7886956 fbshipit-source-id: 5a94df618ce26dee0876b627fbbaaf0a14a403fe
23 lines
496 B
JavaScript
23 lines
496 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @providesModule ReactNative
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
import type {ReactNativeType} from 'ReactNativeTypes';
|
|
|
|
let ReactNative;
|
|
|
|
if (__DEV__) {
|
|
ReactNative = require('ReactNativeRenderer-dev');
|
|
} else {
|
|
ReactNative = require('ReactNativeRenderer-prod');
|
|
}
|
|
|
|
module.exports = (ReactNative: ReactNativeType);
|