Skip to content

Instantly share code, notes, and snippets.

@Ledoux
Created April 16, 2019 20:51
Show Gist options
  • Save Ledoux/c1b122f303ed4250e3324b7a600fe68c to your computer and use it in GitHub Desktop.
Save Ledoux/c1b122f303ed4250e3324b7a600fe68c to your computer and use it in GitHub Desktop.
function mapStateToProps(state, ownProps) {
const {
match: {
params: { offerId }
}
} = ownProps;
return {
offer: selectOfferById(state, offerId),
stocks: selectStocksByOfferId(state, offerId)
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment