Skip to content

Instantly share code, notes, and snippets.

@alexesDev
Created September 21, 2017 07:15
Show Gist options
  • Select an option

  • Save alexesDev/e02ac8ea1d8b8003144862481517d5a9 to your computer and use it in GitHub Desktop.

Select an option

Save alexesDev/e02ac8ea1d8b8003144862481517d5a9 to your computer and use it in GitHub Desktop.
const getForm = state => ({
name: state.quickOrder.name,
phone: `7${state.quickOrder.phone}`,
});
const dataSelector = createStructuredSelector({
form: getForm,
cart: state => state.cart,
});
const selector = createStructuredSelector({
data: dataSelector,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment