You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
541 B

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