Я не могу понять, что означают эти ошибки.
Это мой компонент:
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;
Это мои ошибки:
![enter image description here](https://i.stack.imgur.com/s1FPC.png)
@ deltaUrlToBlobUrl.js: 29 Показать:
![enter image description here](https://i.stack.imgur.com/J6HIJ.png)
(индекс): 185 показать (я добавил ";", но непомощь):
![enter image description here](https://i.stack.imgur.com/NGw54.png)