Developing a React application using React router v4. All worked well until I introduced Redux in my app. Since then on click of links to change route the browser url change
I'm using react-router-dom v4.1.1. It is working for me. Here is my Demo
import React from 'react';
import Reducer1 from 'yourReducer1';
import Reducer2 from 'yourReducer2';
import {
Route,
Switch as RouterSwitch
} from 'react-router-dom';
const App =()=> (
);
export default App;
Hope it is helpful for you ^^