Uncaught TypeError: Cannot read property ‘props’ of null
Since you are not using React.createClass in class methods this doesn’t refers to the component instance, so you should bind it manually. There are several ways: 1. Manually bind this in class constructor 2. Use ES7 Property initializers with arrow function 3. Bind this at call-site In render() method: