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