mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
Added ReactFabric shim (#12216)
This commit is contained in:
23
scripts/rollup/shims/react-native/ReactFabric.js
vendored
Normal file
23
scripts/rollup/shims/react-native/ReactFabric.js
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
/**
|
||||
* 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 ReactFabric
|
||||
* @flow
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
// TODO @sema: Adjust types
|
||||
import type {ReactNativeType} from 'ReactNativeTypes';
|
||||
|
||||
let ReactFabric;
|
||||
|
||||
if (__DEV__) {
|
||||
ReactFabric = require('ReactFabric-dev');
|
||||
} else {
|
||||
ReactFabric = require('ReactFabric-prod');
|
||||
}
|
||||
|
||||
module.exports = (ReactFabric: ReactNativeType);
|
||||
Reference in New Issue
Block a user