When programming applications with React Js to handle events you need to use the bind method. There are many different ways you can do that, such as placing it in a constructor
1  | constructor(props) {  | 
Or you can also call it in the render function but this way will likely degrade your application performance, but in most cases it is negligible.
1  | render() {  | 
However there is another way to make your code more concise and readable by using the arrow function
1  | handleClick = () => {  | 
P/S: This method also helps to optimize the performance of your application similar to the use of bind in constructor.