such as:
class Jumbotron extends React.Component {
 getContent = () => {
    return <h>Need Some Help?</h1>;
  }
  render(){
    return (
          <div>
            {this.getContent()}
          </div>
    );
  }
}
without .bind(this) or a constructor?