How can I add a back button which is not reloading the page?
At the moment I have this, which works, but with a full reload:
import { Link, browserHistory } from 'react-router'
<button onClick={browserHistory.goBack}>Back</button>
But I would rather use Link from React Router to go back without having to reload the page.