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.

28 lines
586 B

import React, {useState} from 'react';
import {View, Text, StyleSheet, TextInput} from 'react-native';
import ArtistList from "./Artist/ArtistList";
import SearchBar from "./SearchBar";
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;