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