The new react-router syntax uses the Link component to move around the routes. But how could this be integrated with material-ui?
In my cas
You can use browserHistory instead of React-Router Link component
import { browserHistory } from 'react-router'
// Go to /some/path.
onClick(label) {
browserHistory.push('/${label}');
}
// Example for Go back
//browserHistory.goBack()
onClick(label)}
/>
As you see you can simply push() your target to the browserHistory