Skip to content

Commit 9895a0f

Browse files
authored
Added ReactFeatureFlags shim for React Native (#11694)
* Added ReactFeatureFlags shim for React Native * Fixed header license comment
1 parent 18bbd64 commit 9895a0f

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**
2+
* Copyright (c) 2013-present, Facebook, Inc.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
* @providesModule ReactFeatureFlags
8+
*/
9+
10+
'use strict';
11+
12+
var ReactFeatureFlags = {
13+
debugRenderPhaseSideEffects: false,
14+
};
15+
16+
module.exports = ReactFeatureFlags;

0 commit comments

Comments
 (0)