import React from "react"; import {FlatList, ScrollView, StyleSheet, View} from "react-native"; import AlbumCard from "./AlbumCard"; const ArtistList = ({ALBUM_LIST}) => { return ( ( )} keyExtractor={(item) => item.name} /> ); }; const styles = StyleSheet.create({ container: { height: 400, } }); export default ArtistList;