2017-11-22 16:46:18 -08:00

9 lines
157 B
JavaScript

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