React with ES7: Uncaught TypeError: Cannot read property ‘state’ of undefined

I’m getting this error Uncaught TypeError: Cannot read property ‘state’ of undefined whenever I type anything in the input box of AuthorForm. I’m using React with ES7. The error occurs on 3rd line of setAuthorState function in ManageAuthorPage. Regardless of that line of code even if I put a console.log(this.state.author) in setAuthorState, it will stop … Read more