mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: This diff is just here to make it easier for me to work on the stack. It needs to be ripped out of the stack before landing Changelog: [Breaking][General] The `target` field of events is now a native component, not a react tag Reviewed By: mdvacca Differential Revision: D19458361 fbshipit-source-id: 1d03a58553cf96dc72f6d1323dfb37b1a8cdca75
19 lines
385 B
JavaScript
19 lines
385 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow strict-local
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const ReactFeatureFlags = {
|
|
debugRenderPhaseSideEffects: false,
|
|
enableNativeTargetAsInstance: true,
|
|
};
|
|
|
|
module.exports = ReactFeatureFlags;
|