mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 12:34:17 +00:00
3a031cc93a
Reviewed By: javache Differential Revision: D5547208 fbshipit-source-id: 25cef6aa27fc4f17b26e1088256819ea235f79cf
24 lines
538 B
JavaScript
24 lines
538 B
JavaScript
/**
|
|
* Copyright 2013-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 ReactNativeFeatureFlags
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var ReactNativeFeatureFlags = {
|
|
useFiber: false,
|
|
};
|
|
|
|
if (__DEV__) {
|
|
require('Systrace').installReactHook(false);
|
|
}
|
|
|
|
module.exports = ReactNativeFeatureFlags;
|