Update client dependencies

This commit is contained in:
Ken-Håvard Lieng 2016-01-15 20:56:03 +01:00
parent 383ca39354
commit d023f63a7c
9 changed files with 48 additions and 41 deletions

View file

@ -1,6 +1,6 @@
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { pushPath } from 'redux-simple-router';
import { routeActions } from 'redux-simple-router';
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, select, hideMenu })(App);
export default connect(mapStateToProps, { pushPath: routeActions.push, select, hideMenu })(App);