Touchable.js 180 B

1234567
  1. import React from 'react'
  2. import { TouchableOpacity } from 'react-native'
  3. const Touchable = props => <TouchableOpacity activeOpacity={0.8} {...props} />
  4. export default Touchable