Created
October 5, 2020 07:51
-
-
Save ting11222001/b7ce71396c2ae9a9b019db576e1ab0ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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