import React from 'react'; import { View, Image, Text, StyleSheet } from 'react-native'; const ArtistPage = ({ name, imageUri }) => { return ( {name} ); }; const styles = StyleSheet.create({ container: { marginTop:40, alignItems: 'center' }, image: { width: 150, height: 150, marginBottom: 10, borderRadius: 100, borderWidth: 2, borderColor: 'black' }, name: { fontSize: 20, fontWeight: 'bold', textAlign: 'center', }, }); export default ArtistPage;