react-native/Libraries/Renderer/shims/ReactNativeFeatureFlags.js
Alexey Lang 3a031cc93a Bring back React Stack support
Reviewed By: javache

Differential Revision: D5547208

fbshipit-source-id: 25cef6aa27fc4f17b26e1088256819ea235f79cf
2017-08-10 04:17:27 -07:00

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;