2017-02-20 16:04:50 -07:00

8 lines
181 B
JavaScript

module.exports = {
onInput: function(input) {
this.state = {
size: input.size || 'normal',
label: input.label || '(no label)'
};
}
};