I cant understand what mean that errors.
This is my component:
import React, { Component } from 'react';
import { Text, View } from 'react-native';
import axios from 'axios';
class AlbumList extends Component {
componentWillMount() {
axios.get('https://rallycoding.herokuapp.com/api/music_albums')
.then(response => console.log(response));
}
render() {
return (
<View>
<Text>AlbumList!</Text>
</View>
);
}
}
export default AlbumList;
This is my Errors:
@ deltaUrlToBlobUrl.js:29 Show:
(index):185 show (I added ";" but dont help) :