10 lines
146 B
JavaScript

function Component() {}
Component.prototype = {
handleClick: function () {
this.state.clicked = true;
},
};
module.exports = Component;