I have the following route:
<Route path="/userstream/:user" component={ Profile } param="stream" />
Then in my component i get :user
in this way: this.props.match.params.user
But, how I can get stream from hardcoded param?
Thank you in advance.