Skip to content

Instantly share code, notes, and snippets.

@alonbardavid
Created October 9, 2019 17:45
Show Gist options
  • Save alonbardavid/c1425bb3c2b89fa1e434d153536cbf05 to your computer and use it in GitHub Desktop.
Save alonbardavid/c1425bb3c2b89fa1e434d153536cbf05 to your computer and use it in GitHub Desktop.
Why use mobx gist8
// resource-view.js
const resourceById = createSelector([
(state,props)=>state.resources[props.resourceId]
],(resource)=>resource)
const mapStateToProps = (state,ownProps) => ({
...resourceById(state,ownProps)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment