this code work correctly at Expio.io online but when i tried at Visual studio code Network error come "possible unhandled promise rejection (id 0) react native "
here is code '''
state={
Data:[]
}
componentDidMount(){
axios.get("http://localhost:63007/api/values/GetCoustomer")
.then(response => {
this.setState({Data: response.data});
console.log(response.statusText);
})
.then(error => console.log(error));
}
'''