facebookarchive / redux-react-hook

React Hook for accessing state and dispatch from a Redux store
MIT License
2.16k stars 103 forks source link

how to combine reducer #86

Closed wowtrxqn closed 4 years ago

wowtrxqn commented 4 years ago

in my project, i want to combine ervery single part reducer like redux combine

Turanchoks commented 4 years ago

You can do it using combineReducers from redux package itself.

This library is just a small utility that helps you bring mapped state to the components and it does not dictate how you structure or organise your redux store.