Skip to content

Commit

Permalink
Added ReactFeatureFlags shim for React Native (#11694)
Browse files Browse the repository at this point in the history
* Added ReactFeatureFlags shim for React Native

* Fixed header license comment
  • Loading branch information
bvaughn authored Nov 28, 2017
1 parent 18bbd64 commit 9895a0f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions scripts/rollup/shims/react-native/ReactFeatureFlags.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/**
* Copyright (c) 2013-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 ReactFeatureFlags
*/

'use strict';

var ReactFeatureFlags = {
debugRenderPhaseSideEffects: false,
};

module.exports = ReactFeatureFlags;

0 comments on commit 9895a0f

Please sign in to comment.