How can you combine multiple reducers when using the useReducer hook in React?
In React, you can manage multiple reducers by using multiple useReducer hooks, with each hook handling a specific part of the state. Unlike Redux, React doesn't have a built-in combineReducers function.