async getSentiment()

in tweeter/src/components/Tweets.js [18:22]


  async getSentiment() {
    const response = await fetch('http://msbuildsentiment.azurewebsites.net/' + this.props.message);
    const text = await response.text()
    this.setState({sentiment: text})
  }