Сначала в вашем "api_client.js", поместите возврат внутрь, как показано ниже.
function getArtists(){
console.log('call to getArtists')
return fetch(URL)
.then(response => response.json())
.then(data => {
return data
})
}
В вашем App.js просто сделайте это внутри componentWillMount.
componentDidMount(){
getArtists()
.then(data => {
alert(JSON.stringify(data))
});
}