Bartosz Cytrowski

Results 4 issues of Bartosz Cytrowski

https://vasanthk.gitbooks.io/react-bits/patterns/32.list-components.html I suggest putting that list item mapping function above SearchSuggestions component definition like below: ```javascript const renderSearchSuggestion = listItem => ( {listItem.name} {listItem.id} ); const SearchSuggestions = (props) =>...

This ticket was originally reported in the React issue as a potential bug: https://github.com/facebook/react/issues/24502 After a short discussion with @gaearon I volunteered to update the docs so that once someone...

Right now you can handle given action only in one reducer. This is a behavior driven by an early design of this lib.

enhancement

Right now change in reducer requires full page reload to make it work since hot-reloaded reducer will not be able to register itself for the same action. I plan to...

enhancement