import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; import ArtistCard from "./ArtistCard"; const HomePage = () => { return ( ); }; const styles = StyleSheet.create({ container: { marginTop:40, marginLeft:20 }, name: { fontSize: 20, fontWeight: 'bold', textAlign: 'center', }, }); export default HomePage;