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

@ -7,7 +7,7 @@ import UserListItem from './UserListItem';
export default class UserList extends Component {
state = {
height: window.innerHeight - 100
}
};
componentDidMount() {
window.addEventListener('resize', this.handleResize);
@ -19,7 +19,7 @@ export default class UserList extends Component {
handleResize = () => {
this.setState({ height: window.innerHeight - 100 });
}
};
render() {
const { tab, openPrivateChat, select } = this.props;