比如这样
import {useDispatch, useSelector} from 'react-redux';
// import * as appActions from '~/store/appSlice';
import * as sipActions from '~/store/sipSlice';
export function useVolume() {
const key = 'volume';
const dispatch = useDispatch();
const value = useSelector(state => state.sip[key]);
const setValue = _value => {
dispatch(sipActions[key](_value));
};
return [value, setValue];
}
这样一个一个制作很不方便,如何快速制作所有变量的useHook