Ошибка, которую я получаю в console.log
[14:02:02] [Отклонение необработанного обещания: ошибка: ошибка сети] - node_modules \ axios \ lib \ core \ createError.js: 16: 24в createError - node_modules \ axios \ lib \ adapters \ xhr.js: 87: 25 в handleError - ... еще 9 стековых фреймов из внутренних компонентов фреймворка
import React, { Component } from 'react';
import { View, Text } from 'react-native';
import axios from 'axios';
import PhotoSection from './photo-section';
//functional is just returning some data - static
//smart component for dynamic class component
export default class PhotoFeed extends Component {
render() {
axios.get('http://127.0.0.1:3000/photos')
.then(response=> console.log(response));
return (
<View>
<Text> textInComponent </Text>
</View>
);
}
}