mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/52610 This diff removes `ReactNativeFeatureFlags` from `react-native/Libraries/ReactNative` and migrates `shouldPressibilityUseW3CPointerEventsForHover` to common `ReactNativeFeatureFlags` in `src/private/featureflags`. The `shouldEmitW3CPointerEvents is removed as it is used in `rn-tester` to hide some examples. Changelog: [General][Breaking] - Migrate `shouldPressibilityUseW3CPointerEventsForHover` to common private feature flags and remove `shouldEmitW3CPointerEvents` flag. Reviewed By: robhogan Differential Revision: D75448698 fbshipit-source-id: 03942c9504b855f2054c9a5948c0521ce17365b5
13 lines
282 B
JavaScript
13 lines
282 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
*/
|
|
|
|
// $FlowFixMe
|
|
export const examples: Array<any> = [];
|