import React from 'react'; import { View, Text, TouchableOpacity } from 'react-native'; const Item = ({ name }) => { return ( { console.log(`item press`); }}> {name} ) } export default Item;