async componentDidMount() {
const url = "https://api.laut.fm/station/city/current_song";
const response = await fetch(url);
const data = await response.json();
this.setState({ info: data });
const artistname = this.state.info.artist.name;
const title = this.state.info.title;
}
async componentDidMount() {
const image = "http://ws.audioscrobbler.com/2.0/?method=album.getInfo&artist=" + artistname + "&album=" + title + "&api_key=SECRET_KEY&format=json";
const images = await fetch(image);
const dataimage = await images.json();
this.setState({ cover: dataimage });
console.log(dataimage);
}