UNPKG

react-native-dom-expo

Version:

A patch library to make Expo work with react-native-dom

11 lines (6 loc) 340 B
import GenericTouchable from './GenericTouchable'; import React from 'react'; const TouchableWithoutFeedback = props => <GenericTouchable {...props} />; TouchableWithoutFeedback.defaultProps = GenericTouchable.defaultProps; TouchableWithoutFeedback.propTypes = GenericTouchable.publicPropTypes; export default TouchableWithoutFeedback;