Upgrade babel to 6.4.0, fail gulp builds on webpack errors

This commit is contained in:
Ken-Håvard Lieng 2016-01-07 00:28:11 +01:00
parent 47dd4f51cb
commit d7c5d0f9cd
16 changed files with 36 additions and 33 deletions

View file

@ -5,7 +5,7 @@ import pure from 'pure-render-decorator';
export default class MessageInput extends Component {
state = {
value: ''
}
};
handleKey = e => {
const { tab, runCommand, sendMessage, addInputHistory, incrementInputHistory,
@ -34,11 +34,11 @@ export default class MessageInput extends Component {
this.setState({ value: e.target.value });
resetInputHistory();
}
}
};
handleChange = e => {
this.setState({ value: e.target.value });
}
};
render() {
return (