I am trying to change from React.createClass to React.Component, but I am getting below error.
Uncaught TypeError: Cannot read property \'state\' of undefined <
You need to bind this.
this
this.onSelect -> this.onSelect.bind(this)
this.enhanceSection -> this.enhanceSection.bind(this)