alexdevero / react-mobx-react-router-boilerplate

React, React-Router, MobX, MobX-Router and Webpack (heroku-ready) boilerplate with async routes.
MIT License
51 stars 5 forks source link

Back button navigation doesn't work #8

Open pkese opened 5 years ago

pkese commented 5 years ago

... Click on site to navigate to login / members area,
then click browser back button:

location changes but page won't update.

pkese commented 5 years ago

solution is to wrap exported App in App.js into withRouter

import { withRouter } from 'react-router'

@withRouter // <-- here
@inject('store', 'routing')
@observer
export default class App extends Component {
   ...
}