Skip to content

Instantly share code, notes, and snippets.

@ting11222001
Created October 5, 2020 07:51
Show Gist options
  • Save ting11222001/b7ce71396c2ae9a9b019db576e1ab0ad to your computer and use it in GitHub Desktop.
Save ting11222001/b7ce71396c2ae9a9b019db576e1ab0ad to your computer and use it in GitHub Desktop.
componentDidMount(){
axios.get('http://52.198.4.100:5000/accounts/')
.then(res => {
if (res.data.length > 0){
this.setState({
accounts: res.data.map(account => account.accountname),
accountname: res.data[0].accountname
});
};
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment