2016-11-04 12:40:26 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2017-10-04 17:06:57 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-11-04 12:40:26 +00:00
|
|
|
*
|
|
|
|
* @providesModule ReactNative
|
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2017-05-26 17:51:06 +00:00
|
|
|
import type {ReactNativeType} from 'ReactNativeTypes';
|
|
|
|
|
|
|
|
let ReactNative;
|
|
|
|
|
|
|
|
if (__DEV__) {
|
2017-11-15 17:05:34 +00:00
|
|
|
ReactNative = require('ReactNativeRenderer-dev');
|
2017-05-26 17:51:06 +00:00
|
|
|
} else {
|
2017-11-15 17:05:34 +00:00
|
|
|
ReactNative = require('ReactNativeRenderer-prod');
|
2017-05-26 17:51:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = (ReactNative: ReactNativeType);
|