Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lesniakania/c716e2ca3b72314e5f70 to your computer and use it in GitHub Desktop.
Save lesniakania/c716e2ca3b72314e5f70 to your computer and use it in GitHub Desktop.
function select(state) {
const id = state.router.params.id;
return {
submission: state.submissions[id] || {}
};
}
export default connect(select)(SubmissionPage);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment