import React from 'react'; import { View, Text, TouchableOpacity } from 'react-native'; const Item = ({ name, onClick }) => { return ( { onClick() }}> {name} ) } export default Item;