Skip to content

Commit

Permalink
Merge pull request react-boilerplate#118 from jbinto/react-router-redux
Browse files Browse the repository at this point in the history
Update to react-router-redux
  • Loading branch information
mxstbr committed Jan 25, 2016
2 parents 0951e7f + 54630df commit af66975
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { createStore, applyMiddleware } from 'redux';
import thunk from 'redux-thunk';
import FontFaceObserver from 'fontfaceobserver';
import { browserHistory } from 'react-router';
import { syncHistory } from 'redux-simple-router';
import { syncHistory } from 'react-router-redux';
const reduxRouterMiddleware = syncHistory(browserHistory);

// Observer loading of Open Sans (to remove open sans, remove the <link> tag in
Expand Down
2 changes: 1 addition & 1 deletion app/containers/HomePage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import { asyncChangeProjectName, asyncChangeOwnerName } from './actions';
import React from 'react';
import { connect } from 'react-redux';
import { routeActions } from 'redux-simple-router';
import { routeActions } from 'react-router-redux';
import Button from 'Button';
import Anchor from 'Anchor';
import H1 from 'Heading1';
Expand Down
2 changes: 1 addition & 1 deletion app/containers/NotFoundPage/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { connect } from 'react-redux';
import { routeActions } from 'redux-simple-router';
import { routeActions } from 'react-router-redux';

import Button from 'Button';

Expand Down
2 changes: 1 addition & 1 deletion app/containers/ReadmePage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import React from 'react';
import { connect } from 'react-redux';
import { routeActions } from 'redux-simple-router';
import { routeActions } from 'react-router-redux';
import Button from 'Button';
import H2 from 'Heading2';

Expand Down
2 changes: 1 addition & 1 deletion app/rootReducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import { combineReducers } from 'redux';
import { routeReducer } from 'redux-simple-router';
import { routeReducer } from 'react-router-redux';
import homeReducer from 'HomePage/reducer';

export default combineReducers({
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"react-redux": "^4.0.6",
"react-router": "^2.0.0-rc5",
"redux": "^3.0.5",
"redux-simple-router": "^2.0.4",
"redux-thunk": "^1.0.3",
"sanitize.css": "^3.0.0"
},
Expand Down Expand Up @@ -52,6 +51,7 @@
"postcss-reporter": "^1.3.0",
"psi": "^2.0.2",
"react-addons-test-utils": "^0.14.6",
"react-router-redux": "^2.1.0",
"react-transform-hmr": "^1.0.1",
"rewire": "^2.5.1",
"style-loader": "^0.13.0",
Expand Down

0 comments on commit af66975

Please sign in to comment.