diff --git a/Libraries/Components/Pressable/Pressable.js b/Libraries/Components/Pressable/Pressable.js index e86140b60f5..c35c9e3337a 100644 --- a/Libraries/Components/Pressable/Pressable.js +++ b/Libraries/Components/Pressable/Pressable.js @@ -22,6 +22,7 @@ import type { AccessibilityState, AccessibilityValue, } from '../View/ViewAccessibility'; +import {PressabilityDebugView} from '../../Pressability/PressabilityDebug'; import usePressability from '../../Pressability/usePressability'; import {normalizeRect, type RectOrSize} from '../../StyleSheet/Rect'; import type {ColorValue} from '../../StyleSheet/StyleSheetTypes'; @@ -220,6 +221,7 @@ function Pressable(props: Props, forwardedRef): React.Node { ref={viewRef} style={typeof style === 'function' ? style({pressed}) : style}> {typeof children === 'function' ? children({pressed}) : children} + {__DEV__ ? : null} ); }