This repository was archived by the owner on Oct 26, 2018. It is now read-only.
  
  
  
  
  
Description
Hi, I have this setup of my store:
const finalCreateStore = compose(
  autoRehydrate(),
  applyMiddleware(thunk, logger),
)(createStore);
const store = finalCreateStore(reducer, {
  routing: {
    path: `/contacts/30/about`,
  },
});
 
and then at app.jsx I use syncReduxAndRouter(history, store).
When I start my app redux-simple-router ignores my initialState with routing.path. Why?
