import React from 'react'; import { View, Image, Text, StyleSheet } from 'react-native'; const ArtistCard = ({ imageUri, name }) => { return ( {name} ); }; const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', margin: 10, }, image: { width: 80, height: 80, borderRadius: 40, marginRight: 10, }, name: { fontSize: 20, fontWeight: 'bold', }, }); export default ArtistCard;