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

9 lines
215 B
JavaScript

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