constructor()

in tweeter/src/components/Tweets.js [33:39]


  constructor(props) {
      super(props);
      this.state = {
          addTweetText: '',
          tweets: props.tweets
      }
  }