import React from "react"; import {FlatList, ScrollView, StyleSheet, View} from "react-native"; import AlbumCard from "./AlbumCard"; const ArtistList = ({ALBUM_LIST}) => { return ( ( )} /> ); }; const styles = StyleSheet.create({ container: { width: '100%', height: '70%', } }); export default ArtistList;