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 ( ); }; const styles = StyleSheet.create({ container: { marginTop:40, marginLeft:20 }, name: { fontSize: 20, fontWeight: 'bold', textAlign: 'center', }, }); export default HomePage;