2017-02-20 16:30:16 -07:00

11 lines
222 B
JavaScript

module.exports = {
getTemplateData: function(state, input) {
return {
label: input.label
};
},
emitPressEvent: function() {
this.emit('press', { component: this });
}
};