Skip to content

Instantly share code, notes, and snippets.

@diem1
Created August 5, 2016 13:00
Show Gist options
  • Save diem1/f838a1a0fa5d4cc6e80be24a3e04eba3 to your computer and use it in GitHub Desktop.
Save diem1/f838a1a0fa5d4cc6e80be24a3e04eba3 to your computer and use it in GitHub Desktop.
взяття параметрів з адресної строки в react-router
ownerId = this.props.location.query.friend; // get params
ownerId = this.props.params.id;
<Route path="/" component={App}>
<IndexRoute component={VKLoaderApp}/>
<Route path="audios:id" component={URLGetter}/>
</Route>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment