-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improved HoC details across docs #169
base: master
Are you sure you want to change the base?
Conversation
update docs
- Updated babel, babel-runtime, and babel-eslint - Fixes #161
Although this hasn't been merged in yet, I was able to get the info I needed about ConnectToStores by reading: https://github.com/burabure/flummox/blob/master/docs/docs/api/higher-order-component.md thanks for posting this |
@burabure Thanks for all these docs updates. 4.0.0-rc1 has been released, so very soon I'll merge these in as part of a full sweep of the docs to add/change stuff like this. Once we do we can release 4.0 proper. |
Yay! El jue, 11 de junio de 2015 02:37 PM, Andrew Clark [email protected]
|
* the second param (props) contains the props passed to the wrapped component | ||
*/ | ||
([postStore, userStore], props) => ({ | ||
posts: store.getPostForUser(userStore.getUserIdFromName(props.user.name)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be postStore.getPostForUser
instead of store.getPostForUser
?
Update higher-order-component.md
Update higher-order-component.md
acdlite/flummox/#136