Given a dictionary of reducer functions creates a single reducer that once applied
will call each reducer with its corresponding value of the state as its first argument
and the event as its second.
Returns
single reducer function, this may be useful when we want to pass an event as argument to multiple reducers
Given a dictionary of reducer functions creates a single reducer that once applied will call each reducer with its corresponding value of the state as its first argument and the event as its second.
Returns
single reducer function, this may be useful when we want to pass an event as argument to multiple reducers
Example