I have links to components-pages, for example:
<Link to="/"> Home <Link/> 
In props I have a parameter, for example userId. I need to pass it in Link. I know how to pass params in onCLick():
this.props.router.push({
  pathname: '/',
  state: {
    userId: 7
  }
})
How I understand in ink can be performed onClick, but may be it's possible to pass somehow params in it? Without creating onClick?
 
    