Home.js
class Home extends Component {
    handleClick = () => {
        hashHistory.push('/about')
    }
About.js
Is there a way to send props from Home to About when the route is changed?
Maybe something similar to sending props to a child component like so:
<About name="Sara" />
 
    