0 / 60 seg.

You have created a new method in a class component called handleClick, but it is not working. Which code is missing?

class Button extends React.Component{
  constructor(props) {
    super(props);
    // Missing line
  }
  handleClick() {...}
}