how i can display an Image from sql database(xampp) using React Native Expo App and php?there is an error in my code
`company.js:` import React, { Component } from ‘react’; import { View, Text, Image, StyleSheet, SafeAreaView, TouchableOpacity, Modal, TextInput, FlatList } from ‘react-native’; class Company extends Component { constructor(props) { super(props); this.state = { modalVisible: false, stocksToBuy: ”, companies: [] }; } componentDidMount() { this.fetchCompanies(); } fetchCompanies = async () => { try { const response […]