I am creating my first react app in electron (my first electron app too). I have two routes & need to navigate from one to another. For that I am using following code:>
import { browserHistory } from 'react-router' does not work in React router 4. Link
import { browserHistory } from 'react-router'
Use the redirect component:
import { Redirect } from 'react-router';
The render function should replace the entire content with Redirect component.