Update client dependencies

This commit is contained in:
Ken-Håvard Lieng 2016-03-14 23:22:24 +01:00
parent 42efc20748
commit 81b635a872
18 changed files with 97 additions and 162 deletions

View file

@ -1,6 +1,6 @@
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { routeActions } from 'react-router-redux';
import { push } from 'react-router-redux';
import pure from 'pure-render-decorator';
import TabList from '../components/TabList';
import { select } from '../actions/tab';
@ -32,4 +32,4 @@ function mapStateToProps(state) {
};
}
export default connect(mapStateToProps, { pushPath: routeActions.push, select, hideMenu })(App);
export default connect(mapStateToProps, { pushPath: push, select, hideMenu })(App);