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

9 lines
216 B
JavaScript

module.exports = {
onInput: function (input) {
this.state = {
heading: input.heading || '',
message: input.message || '',
colors: input.colors || []
};
}
};