// @ts-ignore import React from 'react'; import {View, Image, Text, StyleSheet, TouchableNativeFeedback} from 'react-native'; const ArtistCard = ({ navigation, item }) => { return ( { navigation.navigate("ArtistDetail",{"artist":item});}}> {item.name} ); }; const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', margin: 10, }, image: { width: 50, height: 50, borderRadius: 40, marginRight: 10, }, name: { fontSize: 20, fontWeight: 'bold', }, }); export default ArtistCard;