expo-dev-menu
Version:
Expo/React Native module with the developer menu.
13 lines (8 loc) • 381 B
JavaScript
import React from 'react';
import GenericTouchable from './GenericTouchable';
const TouchableWithoutFeedback = React.forwardRef((props, ref) => (
<GenericTouchable ref={ref} {...props} />
));
TouchableWithoutFeedback.defaultProps = GenericTouchable.defaultProps;
TouchableWithoutFeedback.propTypes = GenericTouchable.publicPropTypes;
export default TouchableWithoutFeedback;